:root {
    --sidebar-width: 240px;
    --sidebar-bg: #1f2a37;
    --sidebar-active: #2f80ed;
}

body {
    background: #f4f6f8;
}

.login-body {
    background: linear-gradient(160deg, #eef3f8 0%, #d9e4f0 100%);
}

.login-card {
    border-radius: 1rem;
}

#admin-wrapper {
    min-height: 100vh;
}

.admin-sidebar {
    width: var(--sidebar-width);
    min-height: 100vh;
    background: var(--sidebar-bg);
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0.5rem;
    padding: 0.65rem 0.85rem;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: var(--sidebar-active);
    color: #fff;
}

.admin-content {
    min-width: 0;
}

.live-map {
    height: 640px;
    width: 100%;
    border-radius: 0.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #334155;
    font-weight: 600;
}

.status-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.status-dot.status-offline {
    background: #94a3b8;
}

.status-dot.status-available {
    background: #22c55e;
}

.status-dot.status-busy {
    background: #ef4444;
}

.status-dot.status-break {
    background: #f59e0b;
}

@@media (max-width: 992px) {
    #admin-wrapper {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        min-height: auto;
    }

    .live-map {
        height: 420px;
    }
}
