/**
 * BTCScreen Client Styles
 * Estilos mínimos para el plugin cliente
 */

.btcscreen-price {
    display: inline;
    font-family: inherit;
    font-size: inherit;
    transition: color 0.3s ease;
}

/* Animación de actualización */
.btcscreen-price.updating {
    opacity: 0.6;
}

.btcscreen-price.updated {
    animation: priceFlash 0.5s ease;
}

@keyframes priceFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Error */
.btcscreen-error {
    color: #d63638;
    font-style: italic;
    font-size: 0.9em;
}

/* Widget styles (opcional) */
.btcscreen-widget {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btcscreen-widget .btcscreen-item {
    padding: 10px 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

.btcscreen-widget .btcscreen-symbol {
    font-weight: 600;
    margin-right: 8px;
    color: #666;
}

.btcscreen-widget .btcscreen-value {
    font-weight: 700;
    color: #2c3e50;
}