/* ===============================
   STAFF LAYOUT – LATIN TOURS
   Alles begint met .staff-
=============================== */

/* Container */
.staff-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

.staff-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* ===============================
   Sidebar
=============================== */

.staff-aside {
    position: sticky;
    top: 110px; /* beetje onder je navbar */
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    height: fit-content;
}

/* User card */
.staff-user-card {}

.staff-user-row {
    display: flex;
    gap: 18px;
    align-items: center;
}

.staff-avatar {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    object-fit: cover;
    background: #f3f4f6;
}

.staff-name {
    font-weight: 700;
    font-size: 18px;
}

.staff-muted {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
}

.staff-badge-staff {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e0f2ff, #fef3c7);
    color: #1d4ed8;
    font-weight: 600;
}

/* ===============================
   Sidebar nav
=============================== */

.staff-side-nav {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.staff-side-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .1s ease;
}

.staff-side-link i {
    width: 18px;
    height: 18px;
    color: #9ca3af;
}

.staff-side-link:hover {
    background: #f3f4f6;
    transform: translateX(2px);
}

.staff-side-link:hover i {
    color: #2563eb;
}

.staff-side-link.staff-active {
    background: linear-gradient(135deg, #2563eb, #f97316);
    color: #ffffff;
}

.staff-side-link.staff-active i {
    color: #ffffff;
}

.staff-side-sep {
    height: 1px;
    background: #e5e7eb;
    margin: 12px 0;
}

/* Logout knop */
.staff-logout-form {
    margin-top: 18px;
}

.staff-btn-logout {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #b91c1c;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s ease, transform .1s ease, box-shadow .18s ease;
}

.staff-btn-logout i {
    width: 16px;
    height: 16px;
}

.staff-btn-logout:hover {
    background: #fee2e2;
    box-shadow: 0 6px 16px rgba(248, 113, 113, 0.35);
    transform: translateY(-1px);
}

/* ===============================
   Main content
=============================== */

.staff-main {
    background: #ffffff;
    padding: 28px 26px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

/* Titels */
.staff-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.staff-subtitle {
    font-size: 14px;
    color: #6b7280;
}

/* Quick boxes */
.staff-quick-box {
    margin-top: 22px;
    padding: 18px 18px 16px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.staff-quick-box h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.staff-quick-box p {
    font-size: 14px;
    color: #4b5563;
}

.staff-quick-box ul {
    margin-top: 8px;
    padding-left: 18px;
    font-size: 14px;
}

.staff-quick-box a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

.staff-quick-box a:hover {
    text-decoration: underline;
}

/* ===============================
   Responsive
=============================== */

@media (max-width: 900px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }

    .staff-aside {
        position: static;
    }

    .staff-wrap {
        padding: 20px 14px;
    }
}
