﻿* {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    max-width: 2000px;
    box-sizing: border-box;

    //border: 1px solid red;

    //background-color: white;
}

*:focus {
    outline: none;
}

::-webkit-scrollbar {
    width: 5px; /* for vertical scrollbar */
    height: 3px; /* for horizontal scrollbar */
}

/* Track of the scrollbar */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* color of the track */
}

/* Thumb of the scrollbar (the draggable part) */
::-webkit-scrollbar-thumb {
    background-color: #888; /* color of the thumb */
    border-radius: 10px; /* rounded corners */
    border: 2px solid #f1f1f1; /* space around the thumb */
}

/* Thumb hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #555; /* color of the thumb when hovered */
}

@media(max-width: 250px) {
* {
    display: none;
}

}



#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}