.promo-bar {
    display: flex;
    flex-direction: column;  /* Stack elements vertically */
    align-items: center;     /* Center all items horizontally */
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

.promo-text {
    font-size: 0.95em;
    margin-bottom: 10px; /* Add space between text and button */
    text-align: center;  /* Center the text */
}

.promo-button {
    margin-left: 0; /* Remove the left margin */
    display: inline-block;
    background-color: #28a745;
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}
.promo-button:hover {
    background-color: #218838;
    text-decoration: none;
}

/* Chart Strength Meter*/

.chart-strength-meters {
    margin: 20px 0;
    padding: 15px;
    /* Removed background: #f8f9fa; */
    border-radius: 8px;
}

.chart-strength-meters .meter-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.chart-strength-meters .meter-currency {
    width: 50px;
    font-weight: bold;
    font-size: 16px;
}

.chart-strength-meters .meter-bar-container {
    flex: 1;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 10px;
}

.chart-strength-meters .meter-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.chart-strength-meters .meter-bar.very-weak {
    background: #dc3545; /* Red */
}

.chart-strength-meters .meter-bar.weak {
    background: #fd7e14; /* Orange */
}

.chart-strength-meters .meter-bar.neutral {
    background: #ffc107; /* Yellow */
}

.chart-strength-meters .meter-bar.strong {
    background: #28a745; /* Green */
}

.chart-strength-meters .meter-bar.very-strong {
    background: #28a745; /* Green - matching original */
}

.chart-strength-meters .strength-last-updated {
    margin-top: 10px;
    font-size: 12px;
    color: #6c757d;
    text-align: right;
}