.economic-indicators-widget {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 16px;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.widget-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #4CAF50;
}

.widget-header .icon {
    margin-right: 10px;
    font-size: 1.5rem;
}

.widget-header h3 {
    margin: 0;
    font-weight: 500;
}

.indicator-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid #333;
}

.indicator-item:first-of-type {
    border-top: none;
}

.indicator-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.indicator-text h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.indicator-text .subtitle {
    margin: 4px 0 0;
    font-size: 0.8rem;
    color: #888;
}

.indicator-graph {
    width: 60px;
    height: 40px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indicator-value {
    text-align: right;
    width: 80px;
}

.indicator-value .change {
    font-weight: bold;
    font-size: 0.9rem;
}

.indicator-value .current {
    font-size: 0.8rem;
    margin-top: 4px;
}

.green .indicator-value .change {
    color: #4CAF50;
}

.red .indicator-value .change {
    color: #F44336;
}

.add-icon {
    width: 24px;
    height: 24px;
    border: 1px solid #666;
    border-radius: 50%;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.add-icon .plus {
    font-size: 1.2rem;
    color: #666;
    line-height: 1;
}

.widget-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.dots-container {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #444;
}

.dot.active {
    background-color: #888;
}

.source-link {
    font-size: 0.9rem;
    color: #007BFF;
    text-decoration: none;
}