.auto-assign-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    border-radius: 20px;
    padding: 20px 22px;
    margin-bottom: 20px;
    border: 2px solid;
    box-shadow: 0 12px 32px rgba(58,42,33,.08);
}
.auto-assign-indicator .indicator-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 900;
    opacity: .8;
    margin-bottom: 5px;
}
.auto-assign-indicator strong {
    display: block;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
}
.auto-assign-indicator p {
    margin: 8px 0 0;
    font-weight: 700;
}
.auto-assign-indicator .indicator-dot {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 1000;
    font-size: 20px;
    flex: 0 0 auto;
}
.auto-assign-indicator.is-on {
    background: #edf8ef;
    border-color: #3d8b50;
    color: #1d5c2c;
}
.auto-assign-indicator.is-on .indicator-dot {
    background: #3d8b50;
    color: #ffffff;
}
.auto-assign-indicator.is-off {
    background: #fff6df;
    border-color: #c58a24;
    color: #7b4b00;
}
.auto-assign-indicator.is-off .indicator-dot {
    background: #c58a24;
    color: #ffffff;
}
@media (max-width: 640px) {
    .auto-assign-indicator {
        align-items: flex-start;
        padding: 18px;
    }
    .auto-assign-indicator .indicator-dot {
        width: 64px;
        height: 64px;
        font-size: 16px;
    }
}
