body {
    background-color: #f8f9fa;
}

.card {
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: #2c3e50;
    font-weight: 600;
}

.prediction-stat {
    text-align: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.prediction-stat h6 {
    color: #6c757d;
    margin-bottom: 5px;
}

.prediction-stat p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.progress {
    height: 25px;
    border-radius: 15px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-primary {
    width: 100%;
}
/* Add these new styles */
.analysis-metric {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    height: 100%;
}

.analysis-metric h6 {
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

#sentimentMeter {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ff4444 0%, #ffbb33 50%, #00C851 100%);
}

#sentimentMeter::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
}

.tradingview-widget-container {
    height: 400px;
}

/* Add animation classes */
.loading-pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.analysis-metric .progress {
    height: 15px;
}