/* Add here all your CSS customizations */
.header-logo {
    background-image: url('../images/dss_banner.png');
    background-repeat: no-repeat;
    background-size: contain;
    height: 100px;
    /* margin-bottom: 25px; */
    padding: 20px;
}

@media (max-width: 767px) {
    .header-logo {
        background-image: none;
        margin-bottom: 25px;
        padding: 0px;
    }
}
    
#btnScrollToTop {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20vh; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #2C2C2C; /* Set a background color */
    color: #e5e5e5; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#btnScrollToTop:hover {
    background-color: #414141;
    color: #e5e5e5;
}

.custom-flex-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 8vw;
    height: 14vh;
}

#movableDiv {
    background-color: #eee999;
    position: fixed;
    box-shadow: 5px 10px 18px #888888;
    cursor: move;
    user-select: none;
}
