.custom-table-wrapper {
        padding: 10px;
    }

    .custom-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 16px;
        min-width: 300px;
    }

    .custom-table th, 
    .custom-table td {
		color: var(--Black);
		font-weight: 600;
        border: 1px solid #ccc;
        padding: 12px;
        text-align: center;
    }

    .custom-table th {
        background-color: var(--Scarlet-Red);
        color: white;
        font-weight: bold;
    }

    .custom-table td a {
        color: #0000aa;
        text-decoration: none;
        font-weight: bold;
    }

    /* Responsive: Thu nhỏ font chữ và padding trên mobile */
    @media (max-width: 768px) {
        .custom-table {
            font-size: 14px;
        }
        .custom-table th, 
        .custom-table td {
            padding: 8px;
        }
    }

    @media (max-width: 480px) {
        .custom-table, 
        .custom-table thead, 
        .custom-table tbody, 
        .custom-table th, 
        .custom-table td, 
        .custom-table tr {
            display: block;
        }
        .custom-table thead tr {
            display: none;
        }
        .custom-table tr {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            padding: 10px;
            background: #fff;
        }
        .custom-table td {
            border: none;
            text-align: left;
            padding-left: 55% !important;
            position: relative;
        }
        .custom-table td::before {
			content: attr(data-label);
			position: absolute;
			left: 10px;
			top: 10px;
			white-space: nowrap;
			font-weight: bold;
		}
    }