/* Scroll to Top Button Styles */
.scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.scrollToTop.show {
    opacity: 1;
    visibility: visible;
}

.scrollToTop:hover {
    background: linear-gradient(135deg, #0080ff 0%, #0055bb 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.5);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scrollToTop {
        width: 40px !important;
        height: 40px !important;
        right: 15px !important;
        bottom: 20px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .scrollToTop {
        width: 35px !important;
        height: 35px !important;
        right: 10px !important;
        bottom: 15px !important;
        font-size: 16px !important;
    }
}