/* ===================  Economic Calendar Styles  =================== */


.economic-calendar-header-bubble {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.economic-calendar-title {
    font-weight: 800;
}

.economic-calendar-sidebar-sticky {
    position: sticky;
    top: 1rem;
}

.economic-calendar-impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.6rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid #eaeaea;
    background: #fff;
}

.economic-calendar-impact-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    display: inline-block;
}

.economic-calendar-impact-dot-high {
    background: #dc3545;
}

.economic-calendar-impact-dot-medium {
    background: #ffc107;
}

.economic-calendar-impact-dot-low {
    background: #20c997;
}

.economic-calendar-filter-button {
    border-radius: 50px;
}

.economic-calendar-date-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #fff;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #eee;
}

.economic-calendar-event-row {
    padding: 1rem;
    border-bottom: 1px solid #f1f1f1;
}

.economic-calendar-event-row:last-child {
    border-bottom: none;
}

.economic-calendar-event-title {
    font-weight: 700;
}

.economic-calendar-impact-high {
    background: rgba(220, 53, 69, 0.08);
}

.economic-calendar-impact-medium {
    background: rgba(255, 193, 7, 0.10);
}

.economic-calendar-impact-low {
    background: rgba(32, 201, 151, 0.10);
}

.economic-calendar-country-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}


.economic-calendar-chip-button {
    border-radius: 50px;
}

.economic-calendar-holiday-row {
    background: #eef6ff;
    border: 1px solid #e1efff;
}

@media (max-width: 991.98px) {
    .economic-calendar-sidebar-sticky {
        position: static;
    }
}