﻿:root {
    --primary: #0c8f8a; /* xanh ngọc chủ đạo */
    --primary-soft: #e0f7f5; /* nền nhạt */
    --accent: #0ea5e9; /* xanh dương nhấn */
    --bg: #f0fdfb;
    --card-bg: #ffffff;
    --border-soft: #cde5e4;
    --text-main: #022c22;
    --text-sub: #4b5563;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #ccfbf1 0, #f0fdfb 40%, #e0f2fe 100%);
    color: var(--text-main);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}
.cursor-pointer {
    cursor: pointer; /* Đổi con trỏ thành hình bàn tay khi di chuột */
}
.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 10px 32px;
}

/* HEADER NHỎ GỌN */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0c8f8a, #0ea5e9);
    color: #ecfeff;
    box-shadow: 0 10px 25px rgba(15, 118, 110, 0.35);
    margin-bottom: 12px;
}
    header a {
        color: #fff!important;
    }
    .brand {
        display: flex;
        align-items: center;
        gap: 8px;
    }

.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 20%, #ccfbf1 0, #0c8f8a 45%, #0f766e 100%);
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    padding:20px;
}
    .brand-logo img{
        width:40px;
        height:auto;
    }
    .brand-text {
        font-size: 15px;
    }

    .brand-text span {
        display: block;
    }

    .brand-text .title {
        font-weight: 650;
        font-size: 17px;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }

    .brand-text .subtitle {
        font-size: 13px;
        opacity: 0.95;
    }

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 13px;
}

.date-picker {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .date-picker label {
        opacity: 0.9;
    }

    .date-picker input[type="date"] {
        padding: 3px 8px;
        font-size: 14px;
        border-radius: 999px;
        border: none;
        outline: none;
        background: rgba(255, 255, 255, 0.95);
        color: #064e3b;
        box-shadow: 0 2px 6px rgba(15, 23, 42, 0.25);
    }

.header-meta {
    opacity: 0.9;
}

    .header-meta strong {
        font-weight: 600;
    }

/* LAYOUT 5 PHẦN – NHỎ GỌN, DỄ QUÉT */
.grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 10px;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 640px) {
    .item {
        grid-template-columns: 1fr !important;
    }

    .source-logo, .source-logo_n {
        width: 100% !important;
    }

        .source-logo img, .source-logo_n img {
            width: 100% !important;
        }
}

.panel {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 14px;
    padding: 10px 10px 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(205, 229, 228, 0.9);
}

    .panel + .panel {
        margin-top: 8px;
    }

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    gap: 6px;
}

.panel-title {
    font-size: 15px;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #064e3b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.panel-pill {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 600;
}

.panel-subtitle {
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 4px;
}

.panel-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.btn-more {
    padding: 3px 8px;
    border-radius: 999px;
    border: none;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

    .btn-more:hover {
        filter: brightness(0.97);
    }

/* DANH SÁCH TIN – MỖI PHẦN TỐI ĐA 5 TIN */
.list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 2px;
}

.item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px;
    padding: 6px 7px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: #f9fffe;
    font-size: 14px;
}

.item--risk {
    background: #fff7f7;
    border-color: #fecaca;
}

.source-logo_text {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #075985;
    flex-shrink: 0;
}

.source-logo {
    width: 150px;
    border-radius: 9px;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #075985;
    flex-shrink: 0;
}
.source-logo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.source-logo_n {
    width: 250px;
}
    .source-logo_n img {
        width: 100%;
    }
    .item-body {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

.item-title-row {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

.item-title {
    font-weight: 600;
    color: #031716;
    font-size: 14px;
}
.item-title_n {
    font-size: 16px;
}
    .item-meta {
        font-size: 10px;
        color: #6b7280;
        white-space: nowrap;
        padding-left: 10px;
    }

.item-summary {
    font-size: 13px;
    color: #374151;
}
.item-summary_n {
    font-size: 15px;
}
.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 6px;
    margin-top: 2px;
}

.item-tags {
    font-size: 12px;
    color: #047857;
}

.item-link {
    font-size: 13px;
    color: var(--accent);
    text-decoration: underline;
    white-space: nowrap;
}

/* TAG CHỨC NĂNG NHỎ */
.badge-risk {
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    margin-left: 4px;
}

.badge-today {
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    margin-left: 4px;
}

.badge-week {
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    margin-left: 4px;
}

.title-section {
    background-color: #0d6efd;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 20px;
    display: inline-block;
}

.bar_color {
    background-color: #0473d7 !important;
    color: white !important;
}