/* ==========================================
   DESKTOP STYLES (Màn hình máy tính)
   ========================================== */
.sidebar-left-wrapper {
    width: 100%;
}

/* Ẩn thanh toggle di động khi ở giao diện máy tính */
.mobile-sidebar-toggle {
    display: none;
}

/* Các Widget box tiêu chuẩn */
.sidebar-left-content .widget-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.sidebar-left-content .widget-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #0056b3;
    font-weight: bold;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
}

/* Danh sách Danh mục */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2.2;
}

.category-list li a {
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    transition: color 0.2s ease;
}

.category-list li a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.category-list .empty-msg,
.flags-tags-list .empty-msg {
    color: #94a3b8;
    font-style: italic;
    font-size: 13px;
}

/* Danh sách Flags/Tags */
.flags-tags-list {
    margin-top: 5px;
    line-height: 1.8;
    font-size: 14px;
}

.flags-tags-list .flag-link {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.flags-tags-list .flag-link:hover {
    text-decoration: underline;
}


/* ==========================================
   MOBILE STYLES (Màn hình nhỏ < 768px)
   ========================================== */
@media (max-width: 768px) {
    .sidebar-left-wrapper {
        margin-bottom: 15px;
    }

    /* Bật thanh bấm "DANH MỤC" duy nhất trên Mobile */
    .mobile-sidebar-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #0056b3;
        color: #ffffff;
        padding: 12px 16px;
        border-radius: 6px;
        font-weight: bold;
        font-size: 15px;
        cursor: pointer;
        user-select: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .mobile-sidebar-toggle .toggle-arrow {
        font-size: 12px;
        transition: transform 0.25s ease;
    }

    /* Mũi tên quay ngược khi đựoc mở */
    .mobile-sidebar-toggle.is-open .toggle-arrow {
        transform: rotate(180deg);
    }

    /* MẶC ĐỊNH ẨN TOÀN BỘ NỘI DUNG SIDEBAR LEFT TRÊN MOBILE */
    .sidebar-left-content {
        display: none;
        margin-top: 10px;
    }

    /* BẬT HIỂN THỊ KHI ĐƯỢC CLICK */
    .sidebar-left-content.is-active {
        display: block;
    }

    .sidebar-left-content .widget-box {
        border: 1px solid #e2e8f0;
        margin-bottom: 10px;
    }
}