body {
    overflow-x: hidden;
    width: 100%;
}

.jvm-tooltip {
    z-index: 9999 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.custom-scrollbar::-webkit-scrollbar {
    height: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(26, 59, 80, 0.3);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #007491;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #FF8000;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}
