html,
body {
    margin: 0;
    padding: 0;
    background: #0f1724;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
}

.analysis-widget {
    padding: 20px;
    min-height: 100vh;
    box-sizing: border-box;
    background:
        radial-gradient(circle at top left,
        rgba(59,130,246,0.10),
        transparent 40%),
        #0f1724;
}

.analysis-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}

.widget-kicker {
    font-size: 12px;
    letter-spacing: 0.12em;
    color: #7dd3fc;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.analysis-header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.analysis-toolbar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.analysis-toolbar label {
    font-size: 13px;
    color: #94a3b8;
}

.analysis-toolbar select {
    background: #172033;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
}

.analysis-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.summary-card {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 16px;
}

.summary-card span {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.summary-card strong {
    font-size: 22px;
    font-weight: 700;
}

.chart-wrapper {
    height: 520px;
    position: relative;
}

.analysis-footer {
    margin-top: 18px;
    font-size: 13px;
    color: #94a3b8;
}

@media (max-width: 900px) {

    .analysis-summary {
        grid-template-columns: 1fr;
    }

    .chart-wrapper {
        height: 420px;
    }
}
