.app-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

.app-drawer-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.app-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 86vw);
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transform: translateX(-105%);
    transition: 0.28s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(15,23,42,0.22);
}

.app-drawer.show {
    transform: translateX(0);
}

.app-drawer-head {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.app-drawer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-drawer-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    font-size: 1rem;
}

.app-drawer-brand strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    color: #111827;
    font-size: 1rem;
}

.app-drawer-brand span {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
    margin-top: 2px;
}

.app-drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: #f3f4f6;
    color: #111827;
    cursor: pointer;
}

.app-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    display: grid;
    gap: 24px;
}

.app-drawer-section {
    display: grid;
    gap: 10px;
}

.app-drawer-section-title {
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    padding: 0 6px;
}

.app-drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 54px;
    border-radius: 16px;
    padding: 0 16px;
    text-decoration: none;
    color: #111827;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    transition: 0.2s ease;
    font-weight: 700;
}

.app-drawer-link:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.app-drawer-link i {
    width: 22px;
    text-align: center;
    color: #16a34a;
    font-size: 1rem;
}

.app-drawer-link.logout {
    color: #dc2626;
}

.app-drawer-link.logout i {
    color: #dc2626;
}

.hamburger-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: none;
    background: rgba(255,255,255,0.10);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s ease;
}

.hamburger-btn:hover {
    background: rgba(255,255,255,0.16);
}
