.anychart {
    height: 450px;
}

.anychart-stacked {
    height: 320px;
}

.chart {
    height: 100%;
}

.month-selector,
.date-picker {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* select {
            max-width: 400px;
            width: 100%;
        } */

button[type="submit"],
.reset {
    background: rgb(236, 142, 0);
    padding: 0.5rem 2rem;
    border-radius: 10px;
    color: white;
    display: inline-block;
}

.max-w-screen-lg {
    max-width: 1024px;
}

.mb-8 {
    margin-bottom: 2rem;
}

.text-2xl {
    font-size: 1.5rem;
}

button[aria-expanded="true"] {
    background-color: #A2CFFE !important;
}

.modal-container {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    z-index: 50;
}

.modal-inner {
    width: 100%;
    max-width: 768px;
    height: 70vh;
    background-color: white;
    border-radius: 16px;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid silver;
    padding: 1rem;
    position: sticky;
    top: 0;
    background-color: white;
}

.campaign-image {
    width: 100%;
}

.hidden {
    display: none;
}

.border-b {
    border-bottom: 1px solid silver;
}

.link {
    color: blue;
    text-decoration: underline;
}

.exclaim {
    --size: 28px;
    width: var(--size);
    height: var(--size);
    background: #e53935;
    color: #fff;
    font-weight: 700;
    font-family: system-ui;
    border-radius: 50%;
    /* circle */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.symbol {
    font-size: 1rem;
    line-height: 1;
}

/* Notification badge */
.badge {
    position: absolute;
    top: -4px;
    right: -4px;
    height: calc(var(--size) * 0.32);
    min-width: calc(var(--size) * 0.32);
    padding: 0 6px;
    background: #fff;
    color: #e53935;
    border-radius: 999px;
    /* circular badge */
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}