/**
 * CMC Fear and Greed Widget Stylesheet
 */

.cmc-fear-greed-widget {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 2px;
    padding: 14px 16px;
    max-width: 440px;
    margin: 12px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.cmc-fear-greed-widget * {
    box-sizing: border-box;
}

.cmc-main-title {
    margin: 0 0 12px 0;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: #0f172a;
}

/* Panel cards */
.cmc-panel {
    background: #ffffff;
    border: 1px solid #eff2f5;
    border-radius: 2px;
    padding: 12px 14px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}

.cmc-panel:last-child {
    margin-bottom: 0;
}

.cmc-panel-title {
    margin: 0 0 10px 0;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

/* Gauge Area */
.cmc-gauge-panel .cmc-panel-title {
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    color: #1e293b;
}

.cmc-gauge-container {
    position: relative;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
}

.cmc-gauge-svg {
    display: block;
    width: 100%;
    height: auto;
}

.cmc-gauge-dot {
    transition: all 0.5s ease-out;
}

.cmc-gauge-value-box {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cmc-gauge-number {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.cmc-gauge-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    margin-top: 4px;
}

/* Lists and Rows */
.cmc-list {
    display: flex;
    flex-direction: column;
}

.cmc-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.cmc-list-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cmc-list-row:first-child {
    padding-top: 0;
}

.cmc-row-label {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cmc-row-date {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 500;
}

/* Badge Styling */
.cmc-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    min-width: 60px;
    line-height: 1.4;
}

/* Badge colors mapping */
.badge-neutral {
    background: #fef8e7;
    color: #b7791f;
}

.badge-fear {
    background: #fff5f5;
    color: #c53030;
}

.badge-extreme-fear {
    background: #ea3943;
    color: #ffffff;
}

.badge-greed {
    background: #f0fff4;
    color: #15803d;
}

.badge-extreme-greed {
    background: #16c784;
    color: #ffffff;
}

/* Error message styling */
.cmc-error {
    background: #fff5f5;
    border: 1px solid #fed766;
    color: #c53030;
    padding: 12px;
    border-radius: 2px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
}
