/* public/css/go-to-top.css */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #00008B;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.go-to-top:hover {
    background-color: #C29251;
    transform: translateY(-3px);
}

.go-to-top.active {
    opacity: 1;
    visibility: visible;
}

.go-to-top i {
    font-size: 20px;
}
