/* ===================================
   ANOTHER EXCHANGE RATES STYLES
   =================================== */

.aer-widget-container {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-family: inherit;
    min-width: 250px; /* Ancho mínimo para que no se rompa */
}

.aer-title {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    font-weight: 700;
}

.aer-date {
    text-align: center;
    margin-bottom: 15px;
    color: #999;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.aer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aer-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px; /* Un poco de padding lateral */
    border-bottom: 1px solid #f9f9f9;
    font-size: 0.9rem;
    color: #555;
    transition: background 0.2s;
}

/* Efecto cebra sutil o hover para guiar la vista */
.aer-list li:hover {
    background-color: #fcfcfc;
}

.aer-list li:last-child {
    border-bottom: none;
}

.aer-label {
    font-weight: 600;
    color: #444;
    font-size: 0.85rem;
}

.aer-value {
    font-family: "Courier New", monospace;
    font-weight: 700;
    color: #444;
    font-size: 0.95rem;
}

.aer-footer {
    margin-top: 15px;
    text-align: center;
    font-size: 0.7rem;
    color: #aaa;
    font-style: italic;
}