﻿/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #039BC1;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(3, 155, 193, 0.3);
    z-index: 1000;
    font-size: 24px;
    line-height: 1;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: #0288a1;
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(3, 155, 193, 0.4);
    }

    .back-to-top:active {
        transform: translateY(-1px);
    }

    .back-to-top svg {
        width: 24px;
        height: 24px;
        fill: white;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

        .back-to-top svg {
            width: 20px;
            height: 20px;
        }
}

@media (max-width: 576px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

        .back-to-top svg {
            width: 18px;
            height: 18px;
        }
}
