/* --- THE FLOATING SCHEDULE BUTTON (SOLID BLUE & NOTIFICATIONS) --- */

.sch-float-anchor {
    position: fixed;
    bottom: 105px; /* Above the Telegram Bell */
    right: 20px;
    width: 65px;
    height: 65px;
    z-index: 9998;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sch-float-anchor.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
}

/* The Live Dot WITH a number */
.sch-red-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff2e63;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 10px rgba(255, 46, 99, 0.8);
    border: 2px solid #111;
}

.sch-bell-core {
    width: 100%;
    height: 100%;
    background: #2563eb; /* Solid Blue Background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sch-bell-core:hover {
    transform: translateY(-3px) scale(1.05);
}

.sch-svg-dance { 
    display: flex; 
    color: #fff;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: calIdleSmooth 4s infinite ease-in-out;
}
.sch-svg-dance svg { width: 28px; height: 28px; }

@keyframes calIdleSmooth {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.05); }
}

.sch-bell-core:hover .sch-svg-dance { 
    animation: none; 
    transform: scale(1.1) rotate(-10deg); 
}