:root {
    --rm-primary: #054e23;
    --rm-accent: #ebb54b;
}

/* Header Closed Banner */
.rm-closed-banner {
    background-color: var(--rm-primary);
    color: var(--rm-accent);
    text-align: center;
    padding: 14px;
    font-weight: 700;
    font-size: 15px;
    position: sticky;
    top: 0;
    z-index: 99999;
}

/* PWA App Cards */
.rm-pwa-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.rm-pwa-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--rm-primary);
    font-size: 16px;
    margin-bottom: 12px;
}

.rm-pwa-select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid var(--rm-primary);
    background-color: #f8fafc;
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    outline: none;
    cursor: pointer;
}

.rm-tip-pwa-box h3 {
    color: var(--rm-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.rm-pwa-chips {
    display: flex;
    gap: 10px;
}

.rm-chip-btn {
    flex: 1;
    background: #ffffff;
    border: 2px solid var(--rm-primary);
    color: var(--rm-primary);
    padding: 12px 8px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.rm-chip-btn.active, .rm-chip-btn:hover {
    background: var(--rm-primary);
    color: var(--rm-accent);
}

/* Elementor Grid Structure Base */
.rm-tables-grid {
    display: grid;
    gap: 20px;
}

.rm-table-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.rm-table-card.is-disabled {
    filter: grayscale(100%);
    opacity: 0.65;
    background: #f1f5f9;
}

.rm-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.rm-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.rm-badge.active { background: #054e23; color: #ebb54b; }
.rm-badge.occupied { background: #d97706; }
.rm-badge.reserved { background: #dc2626; }

.rm-card-content {
    padding: 16px;
}

.rm-card-content h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #054e23;
}

.rm-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #054e23;
    color: #ebb54b;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 12px;
    border: none;
}

.rm-card-btn.disabled {
    background: #94a3b8;
    color: #fff;
    cursor: not-allowed;
}