/* static/css/styles.css */

/* Style the back to top button */
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 99;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff5a5a, #e64e4e);
    /* box-shadow: 5px 5px 15px #b32e2e, -5px -5px 15px #ff7a7a; */
    color: white;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

#btn-back-to-top i {
    font-size: 24px;
}

#btn-back-to-top:hover {
    background: linear-gradient(145deg, #ff7a7a, #ff5a5a);
    /* box-shadow: 10px 10px 20px #b32e2e, -5px -5px 20px #ff7a7a; */
    transform: translateY(-5px);
}

#btn-back-to-top:active {
    background: linear-gradient(145deg, #e64e4e, #ff5a5a);
    /* box-shadow: inset 5px 5px 15px #b32e2e, inset -5px -5px 15px #ff7a7a; */
    transform: translateY(2px);
}
