/* ========================================
   Responsive Sidebar - ระบบกิจการนักศึกษา
   ======================================== */

/* --- Overlay พื้นหลังสีดำโปร่งใส --- */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    cursor: pointer;
}

.sidebar-overlay.show {
    display: block;
}

/* --- ปุ่มปิด sidebar --- */
.btn-close-sidebar {
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 13px;
    display: block;
}

.btn-close-sidebar:hover {
    background-color: #bb2d3b;
    color: #fff;
}

/* --- Mobile: sidebar ซ่อนไว้ทางซ้าย --- */
@media (max-width: 991.98px) {

    .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 260px !important;
        height: 100vh !important;
        z-index: 9999 !important;
        /* ใช้ transform แทน left เพื่อหลีกเลี่ยง CSS template ทับ */
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        overflow-y: auto !important;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
        margin-left: 0 !important;
    }

    /* เมื่อกด hamburger -> sidebar เลื่อนออกมาเต็ม */
    .sidebar.show {
        transform: translateX(0) !important;
    }

    /* content เต็มหน้าจอ ไม่ถูก sidebar บีบ */
    .content {
        margin-left: 0 !important;
        width: 100% !important;
    }
}

/* --- Desktop: sidebar ปกติ ซ่อนปุ่มปิด --- */
@media (min-width: 992px) {
    .sidebar-overlay {
        display: none !important;
    }

    .btn-close-sidebar {
        display: none !important;
    }
}