﻿/* Dashboard Premium Styles - AdminLTE compatible, no layout overrides */

/* Optional per-page class to hide topbar without touching sidebar */
body.dp-no-topbar .main-header {
    display: none !important;
}

body.dp-no-topbar .content-wrapper {
    margin-top: 0 !important;
}

/* Make page area fill width; when sidebar is collapsed, content wrapper is already full width by AdminLTE. Ensure our wrapper stretches. */
.dashboard-premium-wrapper {
    width: 100%;
    min-height: calc(100vh - 120px);
    padding: 1.5rem;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

/* When sidebar is collapsed, ensure inner container expands fully */
body.sidebar-collapse .dashboard-premium-wrapper {
    width: 100%;
}

/* Font Awesome icon normalization in dashboard scope */
.dashboard-premium i,
.dashboard-premium .fas,
.dashboard-premium .far,
.dashboard-premium .fab {
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", "Font Awesome 5 Brands", "Font Awesome 6 Brands", Arial, sans-serif !important;
    font-weight: 900;
}

.dashboard-premium .far {
    font-weight: 400;
}

/* Page Header */
.dashboard-premium .page-header {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.dashboard-premium .page-title {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--theme-primary-light) 0%, var(--theme-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

    .dashboard-premium .page-title i {
        background: linear-gradient(135deg, var(--theme-primary-light) 0%, var(--theme-primary-dark) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.dashboard-premium .current-period {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: var(--theme-primary-subtle);
    border-radius: 8px;
    font-weight: 600;
    color: var(--theme-primary-dark);
    font-size: .875rem;
}

/* Menu Toggle Button */
.dashboard-menu-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--theme-primary-light) 0%, var(--theme-primary-dark) 100%);
    border: none;
    outline: none;
    color: #fff !important;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px var(--theme-shadow);
    cursor: pointer;
}

    .dashboard-menu-btn i {
        color: #fff !important;
    }

/* Time Filter */
.dashboard-premium .time-filter-container {
    display: flex;
    gap: .625rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.dashboard-premium .time-filter-btn {
    background: #fff;
    border: 2px solid #e9ecef;
    color: #495057;
    padding: .5rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    transition: all .3s;
}

    .dashboard-premium .time-filter-btn.active {
        background: linear-gradient(135deg, var(--theme-primary-light) 0%, var(--theme-primary-dark) 100%);
        color: #fff;
    }

/* KPI Cards */
.dashboard-premium .kpi-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.dashboard-premium .kpi-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.dashboard-premium .kpi-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1rem;
}

    .dashboard-premium .kpi-icon.primary {
        background: linear-gradient(135deg, var(--theme-primary-light) 0%, var(--theme-primary-dark) 100%);
    }

    .dashboard-premium .kpi-icon.info {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    }

    .dashboard-premium .kpi-icon.success {
        background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    }

    .dashboard-premium .kpi-icon.warning {
        background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    }

.dashboard-premium .kpi-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
    min-height: 2.5rem;
}

/* Sections */
.dashboard-premium .data-section {
    background: #fff;
    border-radius: 14px;
    padding: 0;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    overflow: hidden;
}

.dashboard-premium .data-section-header {
    background: linear-gradient(135deg, var(--theme-primary-light) 0%, var(--theme-primary-dark) 100%);
    color: #fff;
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .dashboard-premium .data-section-header.blue {
        background: linear-gradient(135deg, var(--theme-primary-light) 0%, var(--theme-primary-dark) 100%);
    }

    .dashboard-premium .data-section-header.pink {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }

    .dashboard-premium .data-section-header.orange {
        background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        color: #1a1a1a;
    }

.dashboard-premium .data-section-title {
    font-weight: 700;
    margin: 0;
    display: flex;
    gap: .65rem;
    align-items: center;
}

    .dashboard-premium .data-section-title i {
        color: inherit;
    }

.dashboard-premium .data-section-body {
    padding: 1.75rem;
}

/* Tables */
.dashboard-premium .modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

    .dashboard-premium .modern-table thead th {
        background: #f8f9fa;
        color: #495057;
        font-weight: 700;
        font-size: .75rem;
        text-transform: uppercase;
        padding: .875rem .65rem;
        border-bottom: 2px solid #dee2e6;
    }

    .dashboard-premium .modern-table tbody tr:hover {
        background: rgba(102,126,234,.05);
    }

    .dashboard-premium .modern-table tbody td {
        padding: .875rem .65rem;
        border-bottom: 1px solid #f0f0f0;
        font-size: .85rem;
    }

.dashboard-premium .text-end {
    text-align: right;
}

/* Charts */
.dashboard-premium .chart-container {
    position: relative;
    height: 280px;
    margin-top: 1rem;
}

    .dashboard-premium .chart-container.large {
        height: 380px;
    }

/* --- Top Products (fix layout/overflow/alignment) --- */
.dashboard-premium .product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem .75rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color .15s ease, box-shadow .15s ease;
    border-radius: 10px;
}

    .dashboard-premium .product-item:hover {
        background: rgba(102,126,234,.05);
        box-shadow: 0 2px 8px rgba(0,0,0,.05);
    }

    .dashboard-premium .product-item:last-child {
        border-bottom: 0;
    }

.dashboard-premium .product-info {
    flex: 1 1 auto;
    min-width: 0;
}

/* Allow 2-line clamp for long names instead of single-line cut */
.dashboard-premium .product-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: .95rem;
    margin-bottom: .2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    line-height: 1.2;
}

.dashboard-premium .product-meta {
    font-size: .78rem;
    color: #6c757d;
}

.dashboard-premium .product-stats {
    text-align: right;
    flex: 0 0 auto;
    min-width: 120px;
}

.dashboard-premium .product-value {
    font-weight: 700;
    font-size: .95rem;
    color: #1a1a1a;
    white-space: nowrap;
}

.dashboard-premium .product-badge {
    display: inline-block;
    padding: .15rem .5rem;
    border-radius: 12px;
    font-size: .7rem;
    font-weight: 600;
    margin-top: .25rem;
}

    .dashboard-premium .product-badge.hot {
        background: rgba(239,68,68,.1);
        color: #ef4444;
    }

    .dashboard-premium .product-badge.trending {
        background: rgba(245,158,11,.12);
        color: #d97706;
    }

@media (max-width: 576px) {
    .dashboard-premium .product-stats {
        min-width: 90px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-premium-wrapper {
        padding: 1rem;
    }

    .dashboard-premium .kpi-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-premium .chart-container {
        height: 220px;
    }

        .dashboard-premium .chart-container.large {
            height: 280px;
        }
}

/* Sidebar text wrapping fix when sidebar is expanded on premium page */
body.dp-premium-page .main-sidebar .nav-sidebar .nav-link {
    white-space: nowrap;
}

    body.dp-premium-page .main-sidebar .nav-sidebar .nav-link p,
    body.dp-premium-page .main-sidebar .nav-sidebar .nav-treeview .nav-link {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

body.dp-premium-page .main-sidebar .brand-link .brand-text,
body.dp-premium-page .main-sidebar .user-panel .info {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- HKD Warning Modern UI --- */
.hkd-premium-alert {
    background: rgba(255, 248, 225, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-left: 6px solid #ffc107;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.12), 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: alert-float 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hkd-premium-alert:hover {
    background: rgba(255, 248, 225, 0.8);
    box-shadow: 0 20px 45px rgba(255, 193, 7, 0.18), 0 10px 20px rgba(0, 0, 0, 0.08);
}

.hkd-premium-alert::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}

.hkd-alert-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 143, 0, 0.3);
    animation: icon-pulse 2.5s infinite;
    z-index: 1;
}

.hkd-alert-content {
    flex-grow: 1;
    z-index: 1;
}

.hkd-alert-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #664d03;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.hkd-alert-description {
    font-size: 1rem;
    color: #856404;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.hkd-alert-btn {
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    color: white !important;
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(255, 143, 0, 0.25);
    z-index: 1;
    text-decoration: none !important;
}

.hkd-alert-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 30px rgba(255, 143, 0, 0.4);
    background: linear-gradient(135deg, #ffca28 0%, #ffa000 100%);
}

.hkd-alert-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.hkd-alert-btn:hover i {
    transform: translateX(4px);
}

@keyframes alert-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes icon-pulse {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(255, 143, 0, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 8px 30px rgba(255, 143, 0, 0.5); }
    100% { transform: scale(1); box-shadow: 0 8px 20px rgba(255, 143, 0, 0.3); }
}

@media (max-width: 992px) {
    .hkd-premium-alert {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding: 2rem;
    }
    
    .hkd-alert-icon-wrapper {
        margin: 0 auto;
    }
    
    .hkd-alert-btn {
        width: 100%;
    }
}

/* ============================================================
   HKD Revenue Status Section — Premium Redesign
   ============================================================ */

/* ── Root card ─────────────────────────────────────────────── */
.hkd-rss {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    margin-bottom: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.25s;
}
.hkd-rss:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

/* ── Map system theme → local aliases ────────────────────── */
/* All accents follow the active system theme automatically   */
.hkd-rss {
    --rss-c1:     var(--theme-primary,       #28a745);
    --rss-c2:     var(--theme-primary-dark,  #1e7e34);
    --rss-accent: var(--theme-primary-subtle, #e9f7ef);
}



/* ── Body ───────────────────────────────────────────────────── */
.hkd-rss-body {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Metric row (revenue card + progress) ──────────────────── */
.hkd-rss-metric-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

/* Metric card */
.hkd-rss-metric-card {
    background: linear-gradient(135deg, var(--rss-accent) 0%, rgba(255,255,255,0) 100%);
    border: 1.5px solid var(--rss-accent);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    min-width: 180px;
}

.hkd-rss-metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rss-c1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hkd-rss-metric-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--rss-c1);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 0.2rem;
    font-variant-numeric: tabular-nums;
}

.hkd-rss-metric-desc {
    font-size: 0.78rem;
    color: #6b7280;
    font-style: italic;
}

/* Progress steps */
.hkd-rss-progress-card {
    padding: 0.6rem 0 0.4rem;
}

.hkd-rss-progress-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 0.85rem;
}

.hkd-rss-progress-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

/* Connector line behind dots */
.hkd-rss-step-line-wrap {
    position: absolute;
    top: 9px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: #f1f3f5;
    border-radius: 2px;
    z-index: 0;
}

.hkd-rss-step-line-fill {
    height: 100%;
    background: var(--rss-c1);
    border-radius: 2px;
    transition: width 0.5s ease-in-out;
}

.hkd-rss-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    position: relative;
    z-index: 1;
    cursor: default;
}

.hkd-rss-step-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #fff;
    transition: all 0.3s;
}

.hkd-rss-step.past .hkd-rss-step-dot {
    background: var(--rss-c1);
    border-color: var(--rss-c1);
}

.hkd-rss-step.active .hkd-rss-step-dot {
    background: var(--rss-c1);
    border-color: var(--rss-c1);
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
    box-shadow: 0 0 0 4px var(--rss-accent);
    margin-top: -2px;
}

.hkd-rss-step-label {
    font-size: 0.7rem;
    color: #9ca3af;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
    margin-top: 0.25rem;
    font-weight: 500;
}
.hkd-rss-step.past .hkd-rss-step-label {
    font-weight: 600;
    color: #6b7280;
}
.hkd-rss-step.active .hkd-rss-step-label {
    font-weight: 700;
    color: var(--rss-c1);
    font-size: 0.75rem;
}

/* ── Tax card ───────────────────────────────────────────────── */
.hkd-rss-tax-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.85rem 1.1rem;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
}

.hkd-rss-tax-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.tax-exempt   { background: linear-gradient(135deg, var(--rss-accent), var(--theme-primary-subtle, #d4edda)); color: var(--rss-c2); }
.tax-industry { background: linear-gradient(135deg, var(--rss-accent), var(--theme-primary-subtle, #d4edda)); color: var(--rss-c2); }
.tax-profit   { background: linear-gradient(135deg, var(--rss-accent), var(--theme-primary-subtle, #d4edda)); color: var(--rss-c2); }

.hkd-rss-tax-body { flex: 1; min-width: 0; }

.hkd-rss-tax-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: #111827;
}

.hkd-rss-tax-formulas {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hkd-rss-tax-formula {
    font-size: 0.8rem;
    color: #4b5563;
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
}

.hkd-rss-tax-bullet {
    color: var(--rss-c1);
    font-weight: bold;
}

.hkd-rss-tax-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.badge-exempt   { background: var(--rss-accent); color: var(--rss-c2); }
.badge-industry { background: var(--rss-accent); color: var(--rss-c2); }
.badge-profit   { background: var(--rss-accent); color: var(--rss-c2); }

/* ── Method selector (Nhóm 2) ──────────────────────────────── */
.hkd-rss-method-section {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hkd-rss-method-header {
    font-size: 0.82rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hkd-rss-method-header i {
    color: var(--rss-c1);
}

.hkd-rss-method-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.hkd-rss-method-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    background: #fff;
}

.hkd-rss-method-item:hover:not(.disabled) {
    border-color: var(--rss-c1);
    background: var(--rss-accent);
    box-shadow: 0 2px 8px var(--theme-shadow, rgba(40,167,69,0.12));
}

.hkd-rss-method-item.selected {
    border-color: var(--rss-c1);
    background: var(--rss-accent);
    box-shadow: 0 2px 12px var(--theme-shadow, rgba(40,167,69,0.15));
}

.hkd-rss-method-item.disabled {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}

.hkd-rss-method-radio {
    font-size: 1.1rem;
    padding-top: 1px;
    flex-shrink: 0;
    color: #9ca3af;
    transition: color 0.2s;
}

.hkd-rss-method-item.selected .hkd-rss-method-radio {
    color: var(--rss-c1);
}

.hkd-rss-method-content { flex: 1; min-width: 0; }

.hkd-rss-method-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #111827;
}

.hkd-rss-method-formula {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.15rem;
    font-style: italic;
}

/* ── Books section ─────────────────────────────────────────── */
.hkd-rss-books-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #f3f4f6;
    flex-wrap: wrap;
}

.hkd-rss-books-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
}



.hkd-rss-books-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.hkd-rss-book-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.3rem 0.75rem;
    background: var(--rss-accent);
    color: var(--rss-c1);
    border: 1px solid var(--rss-c1);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.03em;
    opacity: 0.85;
}

.hkd-rss-book-chip:hover {
    background: var(--rss-c1);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px var(--theme-shadow, rgba(40,167,69,0.25));
    opacity: 1;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
    .hkd-rss-metric-row {
        grid-template-columns: 1fr;
    }

    .hkd-rss-metric-card {
        min-width: unset;
    }

    .hkd-rss-header {
        padding: 0.9rem 1.1rem;
    }

    .hkd-rss-body {
        padding: 1rem 1.1rem;
    }

    .hkd-rss-method-list {
        grid-template-columns: 1fr;
    }

    .hkd-rss-books-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
