/* ════════════════════════════════════════════════════════════════════
   TABELA COTAÇÕES - iCâmbio (VERSÃO COMPACTA E REFINADA)
   ════════════════════════════════════════════════════════════════════ */

#icambio-cotacoes-tabela {
    background-color: #000000 !important;
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 0px !important;
    box-shadow: none !important;
}

.icambio-widget-container {
    font-family: 'DM Sans', sans-serif;
    background: #000000;
    color: #ffffff;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.icambio-table {
    width: 100%;
    border-collapse: collapse;
}

.icambio-table th {
    padding: 1rem;
    background: #ffbd00;
    color: #000000;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-bottom: 2px solid #000000;
}

.icambio-table td {
    padding: 1rem;
    border-bottom: 1px solid #111;
    vertical-align: middle;
    text-align: center;
}

.moeda-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.moeda-imagem {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.moeda-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moeda-info {
    display: flex;
    flex-direction: column;
}

.moeda-nome {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.moeda-codigo {
    color: #888;
    font-size: 0.75rem;
}

.valor-compra {
    color: #ffbd00;
    font-weight: 700;
    font-size: 0.95rem;
}

.valor-venda {
    color: #ffbd00;
    font-weight: 700;
    font-size: 0.95rem;
}

.ultima-atualizacao {
    padding: 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: #000000;
    font-weight: 800;
    background: #ffbd00;
}

.icambio-footer {
    padding: 0.5rem;
    text-align: center;
    font-size: 0.7rem;
    color: #000000;
    background: #ffbd00;
}

.icambio-footer a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
}