/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 02 2026 | 05:30:54 */
.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.responsive-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 15px;
    overflow: hidden;
    min-width: 600px;
	margin-bottom: 0;
}

.responsive-table th {
    background: linear-gradient(135deg, #045B9F 0%, #2CB3E9 100%);
    color: white;
    font-weight: 600;
    padding: 10px;
    text-align: left;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.responsive-table th:first-child {
    border-top-left-radius: 15px;
}

.responsive-table th:last-child {
    border-top-right-radius: 15px;
}

.responsive-table td {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    color: #333;
}

.responsive-table tbody tr:hover {
    background-color: #f8f9ff;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.responsive-table tbody tr:last-child td {
    border-bottom: none;
}

.responsive-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}

.responsive-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

.responsive-table td a {
    color: #045B9F;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.responsive-table td a:hover {
    color: #033d6b;
    text-decoration: underline;
}

.responsive-table td a:focus {
    outline: 2px solid #045B9F;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Responsive design */
@media (max-width: 768px) {
    .table-container {
        margin: 10px 0;
        border-radius: 15px;
    }

    .responsive-table {
        min-width: 500px;
        border-radius: 15px;
    }

    .responsive-table th:first-child {
        border-top-left-radius: 15px;
    }

    .responsive-table th:last-child {
        border-top-right-radius: 15px;
    }

    .responsive-table tbody tr:last-child td:first-child {
        border-bottom-left-radius: 15px;
    }

    .responsive-table tbody tr:last-child td:last-child {
        border-bottom-right-radius: 15px;
    }

    .responsive-table th,
    .responsive-table td {
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .table-container {
        border-radius: 12px;
    }

    .responsive-table {
        min-width: 400px;
        border-radius: 12px;
    }

    .responsive-table th:first-child {
        border-top-left-radius: 12px;
    }

    .responsive-table th:last-child {
        border-top-right-radius: 12px;
    }

    .responsive-table tbody tr:last-child td:first-child {
        border-bottom-left-radius: 12px;
    }

    .responsive-table tbody tr:last-child td:last-child {
        border-bottom-right-radius: 12px;
    }

    .responsive-table th,
    .responsive-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
}
