/* 11SE Platform styles */

.sidebar {
    width: 250px;
    min-height: 100vh;
    background: #f8f9fa;
    transition: margin-left 0.3s;
    flex-shrink: 0;
}

.sidebar.collapsed {
    margin-left: -250px;
}

.sidebar .nav-link {
    color: #495057;
    border-radius: 6px;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.sidebar .nav-link:hover {
    background: #e9ecef;
    color: #212529;
}

.sidebar .nav-link.active {
    background: #0d6efd;
    color: #fff;
}

.sidebar-cities {
    max-height: 300px;
    overflow-y: auto;
}

.sidebar-cities .nav-link {
    font-size: 0.85rem;
}

#page-content {
    min-height: 100vh;
    overflow-x: hidden;
}

/* Cards */
.stat-card {
    border-left: 4px solid;
    transition: transform 0.15s;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-card.blue { border-left-color: #0d6efd; }
.stat-card.green { border-left-color: #198754; }
.stat-card.orange { border-left-color: #fd7e14; }
.stat-card.red { border-left-color: #dc3545; }
.stat-card.purple { border-left-color: #6f42c1; }

/* Tables */
.table-hover tbody tr {
    cursor: pointer;
}

/* HTMX loading indicator */
.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
    display: inline-block;
}

/* Promo stats progress */
.promo-progress {
    height: 8px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        margin-left: -250px;
        position: fixed;
        z-index: 1040;
    }

    .sidebar.show {
        margin-left: 0;
    }
}
