/* Ogólny wygląd tabeli */
.crt-table-wrapper {
    width: 100%;
    overflow-x: auto;
    font-family: Arial, sans-serif;
    background: transparent;
}

.crt-update-date {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

.crt-table {
    width: 100%;
    border-collapse: collapse;
    background-color: transparent;
    color: #111;
    font-size: 16px;
}

.crt-table th,
.crt-table td {
    padding: 10px 12px;
    border: none;
    white-space: nowrap;
    vertical-align: middle;
    background: transparent !important;
}

/* Linia oddzielająca wiersze */
.crt-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent !important;
}
.crt-table thead tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Kolumny: align left tylko dla pierwszej */
.crt-col-currency {
    text-align: left;
}
.crt-col-symbol,
.crt-col-buy,
.crt-col-sell {
    text-align: right;
}

/* Komórka waluty z flagą */
.crt-currency-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Flaga */
.crt-flag {
    width: 28px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Nazwa waluty */
.crt-currency-name {
    font-weight: 500;
    color: #111;
}

/* MOBILE: do 540px */
@media (max-width: 540px) {
    .crt-currency-name {
        display: none;
    }

    .crt-flag {
        width: 20px;
    }

    .crt-table {
        font-size: 15px;
    }

    .crt-table th,
    .crt-table td {
        padding: 8px 10px;
        font-size: 14px;
    }

    .crt-currency-cell {
        gap: 6px;
    }
}

/* Informacja o dacie importu */
.crt-last-update{font-size:.9rem;margin:8px 0;opacity:.8}
