/* app.css */

/* ========== Design tokens ========== */
:root {
    --primary: #6366f1;
    --primary-dark: #4338ca;
    --border: #e0e7ff;
    --bg-soft: #f8fafc;
    --text-main: #1f2937;
}

/* Daarna gewoon al je bestaande CSS */
/* ========== Base / Reset ========== */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #1f2937;
}

/* ========== Layout containers ========== */
.container {
    max-width: 100vw;
    margin-left: 240px;
    padding-top: 100px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    min-height: 100vh;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
    z-index: 1001;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1f2937;
    padding: 8px 24px;
    flex-wrap: wrap;
    box-shadow: none;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    min-height: 70px;
}
.sidebar {
    position: fixed;
    top: 30px;
    left: 0;
    width: 240px;
    height: 100vh;
    padding-top: 90px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: none;
    z-index: 900;
    border-radius: 0;
    border-right: 1px solid #e0e7ff;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 12px rgba(0,0,0,0.08);
    padding: 60px 20px 20px;
    box-sizing: border-box;
    transition: left 0.3s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    border-right: 1px solid #e5e7eb;
}
.mobile-sidebar.open {
    left: 0;
}
.mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(31,41,55,0.13);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1050;
}
.mobile-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

/* ========== Header ========== */
.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: visible;
}
.logo-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.logo {
    height: 70px;
    width: auto;
    max-height: 70px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-right: 14px;
    display: block;
}
.logo-stack .role-text {
    margin-top: 4px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    padding: 4px 20px;
}
.header-right {
    display: flex;
    gap: 10px;
    margin-left: auto;
    justify-content: flex-end;
    align-items: center;
    padding-right: 48px;
}
.logout {
    padding: 7px 18px;
    background-color: transparent;
    color: #111827;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.16s, color 0.16s;
    border: 1px solid #d1d5db;
    outline: none;
}
.logout:hover,
.logout:focus {
    background-color: #f3f4f6;
    color: #6366f1;
    border-color: #6366f1;
}
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #1f2937;
    cursor: pointer;
    padding: 0 10px 0 0;
    user-select: none;
}

/* ========== Sidebar ========== */
.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 10px;
    height: 100%;
}
.sidebar-links a:first-child {
    margin-top: 10px;
}
.sidebar-links .logout-link {
    margin-top: auto;
}
.sidebar-links a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 10px;
    transition: background 0.18s, color 0.18s, transform 0.12s;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.sidebar-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
    stroke: #6b7280;
    transition: stroke 0.16s;
}
.sidebar-links a:hover,
.sidebar-links a:focus {
    background: linear-gradient(90deg, #eef2ff 0%, #f8fafc 100%);
    color: #4338ca;
    transform: translateX(2px);
}

.sidebar-links a.active {
    background: linear-gradient(90deg, #e0e7ff 0%, #eef2ff 100%);
    color: #4338ca;
    font-weight: 600;
}

.sidebar-links a.active .sidebar-icon {
    stroke: #4338ca;
}
.sidebar-links a:hover .sidebar-icon,
.sidebar-links a:focus .sidebar-icon {
    stroke: #111827;
}
.mobile-sidebar .sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-sidebar .sidebar-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #6b7280;
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 6px;
    transition: background 0.16s, color 0.16s;
    
}
.mobile-sidebar .mobile-actions-link {
    justify-content: space-between;
}
.mobile-sidebar .sidebar-links a:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.admin-updates-page {
    padding: 20px 12px 40px 20px;
    box-sizing: border-box;
}

.admin-page-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.admin-page-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    margin-left: 0;
}

.admin-page-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-page-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #e0e7ff;
    color: #4338ca;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.admin-page-intro h1 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.08;
}

.admin-page-intro p {
    margin: 0;
    max-width: 720px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

.admin-feedback {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 500;
}

.admin-feedback.success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.admin-feedback.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
    margin-left: 0;
}

.admin-stat-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.95) 100%);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.admin-stat-label {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6366f1;
}

.admin-stat-card strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    color: #111827;
    margin-bottom: 8px;
}

.admin-stat-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

.admin-updates-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    gap: 18px;
    margin-left: 0;
}

.admin-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.admin-card-header {
    margin-bottom: 20px;
}

.admin-editor-card .admin-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.admin-card-header h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.admin-card-header p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-form-grid-inner {
    gap: 16px;
}

.admin-form-section {
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.admin-form-section-head {
    margin-bottom: 16px;
}

.admin-form-section-head h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #111827;
}

.admin-form-section-head p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field span {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 12px 14px;
    box-sizing: border-box;
    font: inherit;
    color: #111827;
    background: #ffffff;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.14);
}

.checkbox-field {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f8fafc;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkbox-field span {
    font-size: 14px;
    font-weight: 500;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-form-actions {
    padding-top: 4px;
}

.primary-button,
.secondary-button,
.danger-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.primary-button {
    border: none;
    background: #6366f1;
    color: #ffffff;
}

.primary-button:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}

.secondary-button {
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
}

.secondary-button:hover {
    border-color: #6366f1;
    color: #4338ca;
}

.ghost-button {
    border: 1px dashed #cbd5e1;
    background: transparent;
    color: #475569;
}

.ghost-button:hover {
    border-color: #94a3b8;
    color: #111827;
}

.danger-button {
    border: 1px solid #fecaca;
    background: #fff1f2;
    color: #be123c;
}

.danger-button:hover {
    background: #ffe4e6;
}

.admin-updates-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-side-column {
    display: grid;
    gap: 24px;
    align-content: start;
}

.admin-update-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
}

.admin-update-meta {
    min-width: 0;
}

.admin-update-topline {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.admin-status-pill,
.admin-type-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.admin-status-pill.published {
    background: #dcfce7;
    color: #166534;
}

.admin-status-pill.draft {
    background: #f3f4f6;
    color: #4b5563;
}

.admin-type-pill {
    background: #eef2ff;
    color: #4338ca;
}

.admin-update-row h3 {
    margin: 0 0 8px;
    font-size: 19px;
}

.admin-update-row p {
    margin: 0 0 10px;
    color: #4b5563;
    line-height: 1.6;
}

.admin-update-row small {
    color: #6b7280;
}

.admin-update-actions {
    display: flex;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-update-actions form {
    margin: 0;
}

.admin-preview-card {
    position: static;
    top: auto;
}

.admin-preview-surface {
    padding: 22px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(99,102,241,0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(99,102,241,0.12);
}

.admin-preview-surface h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.15;
    color: #111827;
}

.admin-preview-summary {
    margin: 0 0 14px;
    color: #4b5563;
    line-height: 1.7;
    font-weight: 500;
}

.admin-preview-content {
    color: #6b7280;
    line-height: 1.8;
}

.admin-empty-state {
    padding: 26px 20px;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    text-align: center;
    color: #6b7280;
    background: #f8fafc;
}

@media (max-width: 980px) {
    .admin-stats-grid,
    .admin-updates-layout {
        grid-template-columns: 1fr;
    }

    .admin-preview-card {
        position: static;
        top: auto;
    }
}

@media (max-width: 760px) {
    .admin-updates-page {
        padding: 16px 8px 32px 0;
    }

    .admin-page-intro {
        flex-direction: column;
    }

    .admin-page-actions {
        width: 100%;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-editor-card .admin-card-header {
        flex-direction: column;
    }

    .admin-update-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-form-section,
    .admin-preview-surface {
        padding: 18px;
    }

    .admin-stat-card strong {
        font-size: 28px;
    }
}

/* Hero */

.activation-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.95);
}

.activation-card {
    background: #ffffff;
    color: #1f2937;
    border-radius: 16px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(99,102,241,0.08);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    margin-top: 20px;
}

.activation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.18);
}

.activation-package {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.activation-price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.activation-price span {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
}

.activation-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.activation-benefits li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-weight: 500;
    color: #1f2937;
}

.activation-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(99,102,241,0.25);
}

.btn-large {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
}

.activation-trust {
    font-size: 13px;
    color: #6b7280;
    margin-top: 15px;
}

.activation-starter {
    margin-top: 30px;
    font-size: 14px;
}
.hero {
    position: relative;
    padding: 140px 20px 140px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero.activation-hero {
    padding-top: 160px;
    padding-bottom: 160px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero.activation-hero .hero-inner {
    max-width: 720px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.hero.activation-hero h1 {
    color: #ffffff;
}

.hero.activation-hero p {
    color: rgba(255,255,255,0.9);
}

.hero.activation-hero h2 {
    color: #ffffff;
}

.hero.activation-hero .btn-save {
    margin-top: 10px;
}

.hero.activation-hero .btn-secondary {
    margin-top: 10px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* ========== KPI components ========== */
.kpi-container {
    display: flex;
    gap: 18px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 36px 0 24px 0;
    padding-left: 24px;
}
.kpi-block {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    padding: 22px 28px;
    min-width: 170px;
    text-align: left;
    border: 1px solid #e0e7ff;
    box-shadow: 0 4px 14px rgba(99,102,241,0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.18s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.kpi-block:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.12);
}
.kpi-title {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 7px;
    font-weight: 500;
}
.kpi-value {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.01em;
}

/* ========== Section headers & buttons ========== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 24px 10px 4px;
}
.section-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
    letter-spacing: -0.01em;
}
.section-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}
.btn-small {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-size: 14px;
    transition: background 0.15s, color 0.15s, border 0.15s;
}
.btn-primary {
    background: linear-gradient(90deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
    border: none;
}
.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(90deg, #4f46e5 0%, #4338ca 100%);
    color: #fff;
}
.btn-secondary {
    background: transparent;
    color: #1f2937;
    border: 1px solid #d1d5db;
}
.btn-secondary:hover,
.btn-secondary:focus {
    background: #f3f4f6;
    color: #6366f1;
    border-color: #6366f1;
}

/* Common action buttons (form pages) */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-back:hover,
.btn-back:focus {
    background: #f3f4f6;
    color: #4338ca;
    border-color: #6366f1;
}

.btn-save {
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.btn-save:hover,
.btn-save:focus {
    background: linear-gradient(90deg, #4f46e5 0%, #4338ca 100%);
    box-shadow: 0 6px 18px rgba(99,102,241,0.25);
}

.btn-save:active {
    transform: translateY(1px);
}



/* ========== Filters inside table-card ========== */
.table-card {
    background: #ffffff;
    padding: 0;
    border-radius: 12px;
    border: 1px solid #e0e7ff;
    box-shadow: 0 6px 20px rgba(15,23,42,0.04);
    padding: 10px 10px 10px 14px;
    margin: 24px 24px 24px 24px;
    
}

.table-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: -0.01em;
}

.overview-booking-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 20px 0 20px;
}

.overview-booking-filters-card {
    padding: 0;
    overflow: hidden;
}

.overview-booking-filters-card .overview-booking-toolbar {
    padding: 14px 16px 8px 16px;
    border-bottom: 1px solid #eef2ff;
}

.overview-booking-filters-card .overview-booking-toolbar h3 {
    margin: 0;
    font-size: 16px;
}

.overview-booking-count {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.overview-booking-filters-card form.filters {
    display: grid;
    gap: 10px;
    padding: 12px 16px 14px 16px;
}

.overview-booking-filter-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.overview-booking-filter-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    color: #6b7280;
}

.overview-booking-filter-field span {
    display: block;
}

.overview-booking-filter-field input,
.overview-booking-filter-field select {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 9px;
    border: 1px solid #d1d5db;
    background: #fff;
    box-sizing: border-box;
    font-size: 14px;
}

.overview-booking-filter-actions {
    margin-top: 2px;
    padding-top: 10px;
    border-top: 1px solid #eef2ff;
}

.overview-booking-filter-actions-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.overview-booking-filter-apply,
.overview-booking-filter-reset {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 10px;
}

.overview-booking-filter-apply {
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.18);
}

.overview-booking-filter-reset {
    text-decoration: none;
}

.overview-booking-actions-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 16px 6px 16px;
}

.overview-booking-create-btn {
    justify-content: center;
}


/* === Grid based filters (overview_booking) === */




/* ========== Form group (label + input/select) ========== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 10px 0px;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-align: left
}

/* Only target text, email, number for appearance: none; */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    appearance: none;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #111827;
    transition: border 0.15s ease, box-shadow 0.15s ease;
    min-width: 0;
}


/* Dedicated styling for date & time (force native iOS rendering) */



/* Force native picker UI in Safari (desktop + iOS) */
input[type="date"],
input[type="time"] {
    -webkit-appearance: auto !important;
    appearance: auto !important;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #111827;
    box-sizing: border-box;
    background-color: #ffffff;
}

/* Ensure picker icon is visible in Safari */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    display: block;
    opacity: 1;
    cursor: pointer;
}



.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.form-group select {
    margin-bottom: 8px;
}

.date-range {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.filters input[type="date"],
.filters select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #111827;
    transition: border 0.15s, box-shadow 0.15s;
}

.filters input[type="date"]:focus,
.filters select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.filters select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%),
                      linear-gradient(135deg, #6b7280 50%, transparent 50%);
    background-position: calc(100% - 16px) 50%, calc(100% - 12px) 50%;
    background-size: 4px 4px, 4px 4px;
    background-repeat: no-repeat;
    padding-right: 28px;
}



/* ========== Collapsible sections ========== */
.collapsible-content {
    display: none;
    overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.2s ease;
}

.collapsible-content.open {
    display: block;
}

.collapsible-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.collapsible-trigger .arrow {
    transition: transform 0.2s ease;
    transform: rotate(-90deg); /* collapsed = arrow sideways */
}

.collapsible-trigger.active .arrow {
    transform: rotate(0deg); /* open = arrow pointing down */
}

/* ========== Tables ========== */

.bookings-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.bookings-table th,
.bookings-table td {
    text-align: left;
    padding: 9px 16px;
    border-bottom: 1px solid #f3f4f6;
}
.bookings-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #6b7280;
    font-size: 13px;
    letter-spacing: 0.02em;
}
.bookings-table tbody tr {
    background: #fff;
    transition: background 0.13s;
}
.bookings-table tbody tr:nth-child(even) {
    background: #f9fafb;
}
.bookings-table tbody tr:hover {
    background-color: #f3f4f6;
    cursor: pointer;
}
.bookings-table td .actions {
    display: flex;
    gap: 8px;
}
.mobile-booking-card.hidden {
    display: none;
}
tr.external-booking td {
    color: inherit;
}
tr.external-booking {
    border-left: 4px solid #6366f1;
    background-color: #f8fafc !important;
}
.extern-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    color: #6366f1;
    font-size: 12px;
    font-weight: 500;
    border-radius: 999px;
    padding: 2px 10px;
    margin-left: 8px;
    vertical-align: middle;
}
.extern-label svg {
    width: 13px;
    height: 13px;
    stroke: #6366f1;
}
.mobile-artist-card{
    display: none;
}

.mobile-booking-card{
    display: none;
}

.mobile-act-card{
    display: none;
}

.mobile-actions-card{
    display: none;
}

/* ========== Action table rows (actions.php) ========== */
.action-row {
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.05s ease;
}

.action-row:hover {
    background-color: #f9fafb;
}

.action-row:active {
    transform: scale(1.01);
}

.action-row td {
    vertical-align: middle;
}

.action-row td:first-child {
    font-weight: 500;
    color: #111827;
}

.action-row td:nth-child(2) {
    color: #374151;
}

/* ========== Modal (availability) ========== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    backdrop-filter: blur(2px);
}

.modal-backdrop.open {
    display: flex;
}

.modal {
    background: #ffffff;
    border-radius: 12px;
    max-width: 620px;
    width: 90%;
    padding: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(15,23,42,0.18);
    animation: modalFadeIn 0.18s ease;
    text-align: center;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.15s ease, transform 0.1s ease;
}

.modal-close:hover {
    color: #111827;
    transform: scale(1.05);
}

.modal form select {
    width: 100%;
    margin-bottom: 16px;
}

.modal form .btn-primary {
    width: 100%;
}
.musician-overlay-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    max-height: 320px;
    overflow-y: auto;
}

.musician-overlay-item {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    margin: 4px 8px 4px 0;
    box-shadow: 0 4px 12px rgba(99,102,241,0.15);
    transition: transform 0.1s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    border: none;
}

.musician-overlay-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(99,102,241,0.22);
}


/* ========== Starter activation overlay ========== */
#starterOverlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(3px);
}

#starterOverlay.open {
    display: flex;
}

#starterOverlay > div {
    background: #ffffff;
    color: #1f2937;
    padding: 32px;
    border-radius: 16px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 30px 70px rgba(15,23,42,0.25);
    animation: modalFadeIn 0.18s ease;
}

#starterOverlay h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

#starterOverlay p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 22px;
}

#starterOverlay form {
    display: flex;
    justify-content: center;
    gap: 12px;
}

#starterOverlay .cta-btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.15s ease;
}

#starterOverlay .cta-btn:first-child {
    background: linear-gradient(90deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
}

#starterOverlay .cta-btn:last-child {
    background: #f3f4f6;
    color: #1f2937;
    border: 1px solid #d1d5db;
}

#starterOverlay .cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(15,23,42,0.18);
}


.musician-overlay-item:last-child {
    border-bottom: none;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Subtle status styling ========== */
.status-bevestigd,
.status-optie {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

/* ========== Artists: Search & Delete button ========== */
.search-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-container input {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #111827;
    min-width: 240px;
    transition: border 0.15s ease, box-shadow 0.15s ease;
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #fecaca;
    background: #fee2e2;
    color: #b91c1c;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-delete:hover,
.btn-delete:focus {
    background: #fecaca;
    border-color: #fca5a5;
    color: #7f1d1d;
}


/* ========== Selected musicians list (form modes) ========== */
.selected-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

/* Horizontal compact styling */
.selected-list .selected-chip {
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 999px;
    box-shadow: none;
    margin: 0;
}

/* Geen hover lift in form-weergave */
.selected-list .selected-chip:hover {
    transform: none;
    box-shadow: none;
}

.selected-chip {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    flex: none;
    margin: 4px 8px 4px 0;
    box-shadow: 0 4px 12px rgba(99,102,241,0.15);
    transition: transform 0.1s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.selected-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(99,102,241,0.22);
}

.selected-chip button {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    line-height: 1;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.15s ease;
}

.selected-chip button:hover {
    opacity: 1;
}

/* ========== Dropdown list (huisstijl) ========== */
.dropdown-list {
    position: relative;
    display: inline-block;
    min-width: 220px;
    font-family: 'Inter', sans-serif;
}

.dropdown-list select {
    appearance: none;
    width: 100%;
    padding: 10px 40px 10px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-size: 14px;
    color: #111827;
    cursor: pointer;
    transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

/* Custom arrow */
.dropdown-list::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    transition: border-color 0.15s ease;
}

.dropdown-list select:hover {
    background: #f9fafb;
}

.dropdown-list select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.dropdown-list select:focus + .dropdown-list::after,
.dropdown-list select:focus ~ .dropdown-list::after {
    border-color: var(--primary-dark);
}


/* =====================================================
   Overview booking – desktop filter spacing
   ===================================================== */

  .overview-booking-filters-card form.filters {
      display: grid;
      gap: 14px;
      padding: 16px 20px 18px 20px;
      align-items: start;
  }

@media (max-width: 900px) {

        .overview-booking-toolbar {
        align-items: center;
        flex-direction: row;
        gap: 8px;
    }

        .overview-booking-filters-card .overview-booking-toolbar {
        padding: 12px 14px 8px 14px;
    }

        .table-card.acts{
        display: none;
    }
    .mobile-booking-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: none;
        border: 1px solid #e5e7eb;
        padding: 14px 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        cursor: pointer;
        transition: border-color 0.15s;
        margin: 12px 12px 12px 12px;
    }
    .mobile-booking-card:hover {
        border-color: #6366f1;
    }
    .mobile-booking-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        font-size: 15px;
        color: #1f2937;
    }
    .mobile-booking-header .status {
        background: #f3f4f6;
        color: #374151;
        padding: 3px 10px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 500;
    }
    .mobile-booking-body div {
        font-size: 14px;
        color: #374151;
        line-height: 1.4;
    }
    .mobile-booking-body strong {
        font-weight: 600;
        color: #111827;
    }
    .mobile-booking-card.external-booking {
        border-left: 4px solid #6366f1;
        background-color: #f8fafc;
    }
    .extern-label {
        margin-left: 0;
        margin-top: 0px;
        display: inline-flex;
    }


    /* ========== Mobile artists (artists.php) ========== */


    .mobile-artist-card {
        background: #ffffff;
        margin: 12px 12px 12px 12px;   
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 4px 14px rgba(15,23,42,0.05);
        display: flex;
        flex-direction: column;
        gap: 10px;
        cursor: pointer;
        transition: transform 0.08s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    }

    .mobile-artist-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(15,23,42,0.08);
        border-color: #6366f1;
    }

    .mobile-artist-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 15px;
        font-weight: 600;
        color: #111827;
    }

    .mobile-artist-header .role {
        background: #f3f4f6;
        color: #374151;
        padding: 4px 10px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 500;
    }

    .mobile-artist-body {
        font-size: 14px;
        color: #374151;
        line-height: 1.4;
    }

    .mobile-artist-actions {
        margin-top: 8px;
        display: flex;
        justify-content: flex-start;
    }

    .bookings-table {
        display: none;
    }

    /* ========== Mobile actions (actions.php) – consolidated ========== */

    .mobile-acts-container {
        display: flex;
        flex-direction: column;
        
    }

    .mobile-act-card {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 4px 14px rgba(15,23,42,0.05);
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
        cursor: pointer;
        transition: transform 0.1s ease, box-shadow 0.15s ease, border-color 0.15s ease;
        margin: 12px;
    }

    .mobile-actions-card {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 4px 14px rgba(15,23,42,0.05);
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
        cursor: pointer;
        transition: transform 0.1s ease, box-shadow 0.15s ease, border-color 0.15s ease;
        margin: 8px; /* extra ruimte tussen cards */
    }

    .mobile-act-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(15,23,42,0.08);
        border-color: #6366f1;
    }

    /* Hide time in mobile action cards */
    .mobile-act-card .act-time,
    .mobile-act-card .action-time {
        display: none !important;
    }

    .mobile-act-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        font-size: 14px;
        color: #111827;
        padding-right: 36px; /* ruimte voor info-icoon rechts */
    }

    .mobile-act-actions {
        margin-top: 8px;
        display: flex;
        justify-content: flex-start;
        gap: 8px;
    }

    /* Details icon (link to booking details) */
    .mobile-act-details-link {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
        transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
    }

    .mobile-act-details-link:hover {
        background: #eef2ff;
        border-color: #6366f1;
        transform: translateY(-1px);
    }

    .mobile-act-details-link svg {
        width: 16px;
        height: 16px;
        stroke: #374151;
        transition: stroke 0.15s ease;
    }

    .mobile-act-details-link:hover svg {
        stroke: #4338ca;
    }

    .availability-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
        color: #ffffff;
        cursor: pointer;
        transition: opacity 0.15s ease, transform 0.1s ease;
    }

    .availability-badge:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

    .sidebar {
        display: none !important;
    }
    .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .kpi-container {
        flex-direction: column;
        align-items: stretch;
        margin: 20px;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Keep collapsible section headers in one row on mobile */
    .section-header.collapsible-trigger {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .section-header.collapsible-trigger .toggle-icon {
        margin-left: auto;
    }
    .section-buttons {
        justify-content: flex-start;
        margin-left:20px;
    }
    .hamburger {
        display: block;
    }
    .header-right a.logout {
        display: none;
    }
    /* ===== Artists pagina – mobile optimalisatie ===== */

.table-card.artists-controls-card {
    margin: 12px 12px 12px 12px;
    padding: 10px 14px;
}
.table-card {
    margin: 12px 12px 12px 12px;
    padding: 10px 14px;
}

.table-card .section-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-left: 10px !important; /* overschrijft inline margin */
}

.table-card .section-buttons .btn-small {
    width: 100%;
    font-size: 14px;
    padding: 10px 14px;
}

.table-card .section-buttons .search-container {
    width: 100%;
}

.table-card .section-buttons .search-container input {
    width: 100%;
}


    /* Remove extra spacing from empty table-card on mobile (artists page) */
    /* Verberg lege desktop table-card op artists pagina */

    /* Hide only the artists table itself, keep header/buttons visible */
    .table-card.artists-table-card {    
        display: none;
    }
    
    .header-right a {
        display: none;
    }
    .header-left .role-text {
        display: none;
    }
    .bookings-table thead {
        display: none;
    }
    .bookings-table tr {
        display: block;
        margin-bottom: 15px;
        border-bottom: 2px solid #eee;
    }
    .bookings-table td {
        display: flex;
        justify-content: space-between;
        padding: 8px 10px;
    }
    .bookings-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #555;
        flex-basis: 45%;
    }



/* =====================================================
   Overview booking – mobile filter optimization
   Targets: form.filters inside .table-card
   ===================================================== */

    .overview-booking-filters-card form.filters {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        padding: 10px 14px 12px 14px;
        align-items: start;
    }

    /* Ensure grid children can shrink properly on iOS */
    .overview-booking-filters-card form.filters > * {
        min-width: 0;
    }

    .overview-booking-filters-card form.filters .form-group {
        min-width: 0;
    }

    .overview-booking-filter-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .overview-booking-filter-actions-inner {
        justify-content: stretch;
    }

    .overview-booking-filter-apply,
    .overview-booking-filter-reset {
        flex: 1 1 160px;
        justify-content: center;
    }

    .overview-booking-filter-field {
        gap: 4px;
        font-size: 11px;
    }

    .overview-booking-filter-field input,
    .overview-booking-filter-field select {
        min-height: 38px;
        font-size: 14px;
        padding: 7px 9px;
    }

    .overview-booking-filter-field select {
        background-image: none;
        padding-right: 10px;
        appearance: auto;
        -webkit-appearance: menulist;
        -moz-appearance: auto;
    }

    /* Fix iOS rendering inside overview_booking filters */
    .overview-booking-filter-field input[type="date"],
    .overview-booking-filter-field input[type="time"] {
        display: block;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        appearance: auto;
        -webkit-appearance: auto;
        background-color: #ffffff;
        border: 1px solid #d1d5db;
        padding: 8px 10px;
        min-height: 40px;
        line-height: 1.2;
        font-size: 14px;
        color: #111827;
        overflow: hidden;
    }

    .overview-booking-filter-field input[type="date"]::-webkit-datetime-edit,
    .overview-booking-filter-field input[type="time"]::-webkit-datetime-edit {
        padding: 0;
    }

    .overview-booking-filter-field input[type="date"]::-webkit-date-and-time-value,
    .overview-booking-filter-field input[type="time"]::-webkit-date-and-time-value {
        text-align: left;
    }

    .overview-booking-actions-bar {
        padding: 0 14px 8px 14px;
    }

    .overview-booking-create-btn {
        width: auto;
    }

    @media (max-width: 360px) {
        .overview-booking-toolbar {
            align-items: flex-start;
            flex-direction: column;
        }

        .overview-booking-filter-row {
            grid-template-columns: minmax(0, 1fr);
        }
    }


}
