/* Estilos para la tarjeta del activo - v1.0.1 */
.wptav-card {
    max-width: 1200px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
    padding: 20px 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.wptav-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wptav-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    flex-shrink: 0;
}

.wptav-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wptav-name {
    font-size: 24px;
    font-weight: 600;
    color: #212529;
    line-height: 1.2;
}

.wptav-name-link {
    color: #212529;
    text-decoration: none;
    transition: color 0.2s;
}

.wptav-name-link:hover {
    color: #2962FF;
    text-decoration: underline;
}

.wptav-symbol {
    font-size: 16px;
    font-weight: 400;
    color: #6c757d;
}

.wptav-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.wptav-price-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 400;
}

.wptav-price-value {
    font-size: 22px;
    font-weight: 700;
    color: #28a745;
}

.wptav-badge {
    display: inline-block;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
    padding: 2px 12px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

@media (max-width: 480px) {
    .wptav-card {
        padding: 16px;
    }
    .wptav-logo {
        width: 48px;
        height: 48px;
    }
    .wptav-name {
        font-size: 20px;
    }
    .wptav-price-value {
        font-size: 18px;
    }
    .wptav-price-label {
        font-size: 12px;
    }
}