.greenhouse-capex-chart {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 20px 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
}

/* Header */

.greenhouse-capex-chart__header {
    margin-bottom: 12px;
}

.greenhouse-capex-chart__eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    margin-bottom: 6px;
}

.greenhouse-capex-chart__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.greenhouse-capex-chart__title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

/* Dropdown */

.greenhouse-capex-chart__control {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
}

.greenhouse-capex-chart__select {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 12px;
    background: #ffffff;
    color: #111827;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.greenhouse-capex-chart__select:hover {
    border-color: #cbd5e1;
}

.greenhouse-capex-chart__select:focus {
    outline: none;
    border-color: #94a3b8;
    box-shadow: 0 0 0 2px rgba(148,163,184,0.15);
}

/* Chart area */

.greenhouse-capex-chart__canvas-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 360px;
    margin: 16px auto 12px;
}

.greenhouse-capex-chart__center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    text-align: center;
}

.greenhouse-capex-chart__center-kicker {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px;
}

.greenhouse-capex-chart__center-value {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
}

/* Meta section */

.greenhouse-capex-chart__meta {
    margin-top: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.greenhouse-capex-chart__meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.greenhouse-capex-chart__meta-label {
    color: #6b7280;
}

.greenhouse-capex-chart__meta-value {
    font-weight: 600;
    color: #111827;
}