.cfgi-linear-meter {
    font-family: 'Vazirmatn', sans-serif;
    text-align: center;
    margin: 20px auto;
    max-width: 600px;
}

.cfgi-status-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 5px;
}

.cfgi-status-text.fear {
    color: #ff0000;
    background-color: #ffe6e6;
}

.cfgi-status-text.extreme-fear {
    color: #ff0000;
    background-color: #ffcccc;
    animation: blink 1s infinite;
}

.cfgi-status-text.neutral {
    color: #000;
    background-color: #ffffcc;
}

.cfgi-status-text.greed {
    color: #00cc00;
    background-color: #e6ffe6;
}

.cfgi-status-text.extreme-greed {
    color: #00cc00;
    background-color: #ccffcc;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.cfgi-linear-bar {
    width: 100%;
    height: 30px; /* ضخامت نوار برابر با قطر نشانگر */
    background: linear-gradient(to right, red, yellow, green);
    border-radius: 15px;
    position: relative;
    margin-bottom: 10px;
}

.cfgi-linear-progress {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
}

.cfgi-linear-marker {
    position: absolute;
    top: 0;
    width: 30px;
    height: 30px;
    background: #000;
    border-radius: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.cfgi-marker-value {
    display: block;
}

.cfgi-date {
    color: #666;
    margin-bottom: 10px;
    font-weight: bold; /* تاریخ با فونت بولد */
}

.cfgi-description {
    margin-top: 10px;
    color: #555;
}