.bg-check-schedule {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(8, 8, 14, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.bg-check-schedule.is-loading {
    opacity: 0.65;
}

.bg-check-schedule.is-running {
    border-color: rgba(88, 101, 242, 0.45);
    box-shadow: 0 0 18px rgba(88, 101, 242, 0.12);
}

.bg-check-schedule.is-error {
    border-color: rgba(237, 66, 69, 0.4);
}

.bg-check-schedule-ring {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.bg-check-schedule-ring svg {
    width: 44px;
    height: 44px;
    transform: rotate(-90deg);
}

.bg-check-schedule-ring-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 3;
}

.bg-check-schedule-ring-fill {
    fill: none;
    stroke: #5865f2;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.35s ease;
}

.bg-check-schedule.is-running .bg-check-schedule-ring-fill {
    stroke: #7289da;
    animation: bg-check-ring-pulse 1.2s ease-in-out infinite;
}

.bg-check-schedule.is-error .bg-check-schedule-ring-fill {
    stroke: #ed4245;
}

.bg-check-schedule-ring-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b9bbbe;
    font-size: 0.95rem;
    pointer-events: none;
}

.bg-check-schedule.is-running .bg-check-schedule-ring-icon {
    color: #7289da;
}

.bg-check-schedule-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bg-check-schedule-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #72767d;
}

.bg-check-schedule-interval {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f2f3f5;
    line-height: 1.25;
}

.bg-check-schedule-status {
    font-size: 0.75rem;
    color: #b9bbbe;
    line-height: 1.3;
}

.bg-check-schedule.is-running .bg-check-schedule-status {
    color: #7289da;
}

.bg-check-schedule-sub {
    font-size: 0.7rem;
    color: #72767d;
    margin-top: 1px;
}

.bg-check-schedule-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43b581;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(67, 181, 129, 0.5);
}

.bg-check-schedule.is-running .bg-check-schedule-dot {
    background: #5865f2;
    animation: bg-check-dot-pulse 1.4s ease-in-out infinite;
}

.bg-check-schedule.is-error .bg-check-schedule-dot {
    background: #ed4245;
    animation: none;
}

@keyframes bg-check-ring-pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.55;
    }
}

@keyframes bg-check-dot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.55);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(88, 101, 242, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(88, 101, 242, 0);
    }
}
