.crypto-price-widget {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.crypto-widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.crypto-card {
    background: #f9fafb;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.2s;
}

.crypto-card:hover {
    transform: scale(1.02);
}

.crypto-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.crypto-icon {
    width: 2rem;
    height: 2rem;
}

.crypto-name {
    font-weight: 600;
    color: #374151;
}

.crypto-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0.5rem 0;
}

.price-change {
    font-size: 0.875rem;
    font-weight: 500;
}

.price-change.positive {
    color: #059669;
}

.price-change.negative {
    color: #dc2626;
}

.crypto-widget-footer {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1rem;
}