/* Tùy chỉnh bảng */
.table th, .table td {
    vertical-align: middle;
}

/* Tùy chỉnh hyperlink */
.table a {
    color: #007bff;
    text-decoration: none;
}
.table a:hover {
    text-decoration: underline;
}

/* Tối ưu cho mobile */
@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    .lead {
        font-size: 1rem;
    }
    .table {
        font-size: 0.9rem;
    }
}