/* ==========================================================================
   Table Styles
   ========================================================================== */

.wp-block-table{
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(15, 45, 99, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: scroll;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

thead {
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.15), rgba(99, 179, 255, 0.15));
    border-bottom: 2px solid rgba(94, 166, 255, 0.3);
}

th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    color: #5ea6ff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(234, 240, 255, 0.85);
    font-size: 14px;
}

tbody tr {
    transition: background-color 0.2s ease;
}

tbody tr:hover {
    background-color: rgba(94, 166, 255, 0.08);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Alternate row colors for better readability */
tbody tr:nth-child(odd) {
    background-color: rgba(10, 31, 74, 0.3);
}

tbody tr:nth-child(even) {
    background-color: rgba(15, 45, 99, 0.2);
}

/* Responsive table for mobile */
@media (max-width: 768px) {
    table {
        font-size: 13px;
        margin: 16px 0;
    }

    th, td {
        padding: 12px 10px;
        width: 150px;
        min-width: 150px;
    }

    th {
        font-size: 11px;
    }
}

