/* Nhúng Font Roboto từ Google để đảm bảo tính đồng nhất trên mọi máy tính */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700;900&display=swap');

/* Header chuẩn ảnh mẫu: Đỏ cờ, Chữ trắng, Icon vàng */
.gov-banner {
    background-color: #c1121f; /* Màu đỏ đậm trang trọng */
    padding: 25px 0;
    text-align: center;
}

.title-main {
    font-family: 'Roboto', sans-serif;
    font-weight: 900; /* Cực dày để tránh lỗi font mảnh */
    color: #ffffff;
    text-transform: uppercase;
    font-size: 2.2rem;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    line-height: 1.2;
}

.title-main i {
    color: #ffd700; /* Vàng Gold rực rỡ */
    font-size: 1.8rem;
}

.title-sub {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1.4rem;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

/* Phần danh sách lịch đơn vị (Ảnh 2) */
.dept-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
}

.dept-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #000;
    flex-shrink: 0;
}

.dept-info h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #c1121f; /* Chữ đỏ */
    text-transform: uppercase;
    margin: 0;
    font-size: 1rem;
}

.dept-info small {
    color: #6c757d;
    font-size: 0.85rem;
}