
/* Style untuk Tombol school */
.btn-school-float {
    position: fixed !important;
    bottom: 100px !important; 
    right: 40px !important; 
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #4285F4, #1a73e8) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 3px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-school-float:hover {
    transform: scale(1.1) rotate(5deg) !important;
    background: linear-gradient(135deg, #1a73e8, #4285F4) !important;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5) !important;
    color: white !important;
}

.btn-school-float i {
    font-size: 32px !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Tooltip kecil untuk school saat di-hover */
.btn-school-float::before {
    content: " school";
    position: absolute;
    bottom: 5px;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-school-float:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: 80px;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .btn-school-float {
        width: 60px !important;
        height: 60px !important;
        right: 40px !important;
        bottom: 90px !important;
    }
    .btn-school-float i {
        font-size: 26px !important;
    }
}

/* Class bantuan saat sedang ditarik agar tidak ada delay animasi */
.is-dragging {
    transition: none !important;
    opacity: 0.8;
}

/* Class saat sedang ditarik agar animasi hover tidak mengganggu */
.dragging-active {
    transition: none !important;
    transform: scale(1.05) !important;
}