/* lets set a background image for html element,  ./img/chicago_skyline_pixels.js */
html {
    /* background-image: url('./img/chicago_skyline_pixels.jpg');
    /* start from top left and stretch to 300% size in each direction */
    /* background-size: 300% 300%; */
    /* background-position: top left; */


}



body {
    background-color: rgb(20, 36, 78);
    /* Dark gray or any other dark color */
    color: #ffffff;
    /* Light text color for contrast */
}

h4 {
    margin-top: 5px;
    margin-bottom: 12px;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./img/pixel-waves.jpg');
    background-size: 100% 100%;
    background-position: top left;
    opacity: 0.03;
    /* Adjust this value between 0 and 1 to control transparency */
    z-index: -2;
    /* Places it behind other content */
    pointer-events: none;
    /* Allows clicking through to elements below */
}


.background-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Places it behind other content */

}


#scheduler-page {
    display: flex;
    flex-direction: row;
    margin-top: 70px;
}

#scheduler-left {
    display: flex;
    flex-direction: column;
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    padding: 10px;
    border-radius: 5px;
    margin-right: 20px;
    margin-top: 10px;
    position: fixed;
}

#scheduler-console {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 450px;
    /* Set a fixed height */
    background-color: #030303;
    border: 3px solid #555;
    padding: 10px;
    border-radius: 5px;
    overflow-y: auto;
    /* Make it scrollable */
    font-family: Consolas, monospace;
    /* Set font to Consolas */

    opacity: 0.95;
    /* font-weight: bold; */
}


.console-text {
    color: #e0e0e0;
    margin: 1px;
    padding: 1px;
    font-size: 9pt;
}






/* These currently apply to all text search results */


.search-result-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #555;
    color: #e0e0e0;
}


.search-result-item:hover {
    background-color: #222;
}

.search-result-item.selected {
    background-color: #333;
}



/* sleek, dark scrollbars everywhere */

/* For WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #2c2c2c;
    /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background-color: #555;
    /* Color of the scrollbar thumb */
    border-radius: 10px;
    /* Roundness of the scrollbar thumb */
    border: 3px solid #2c2c2c;
    /* Padding around the thumb */
}

/* For Firefox */
* {
    scrollbar-width: thin;
    /* Width of the scrollbar */
    scrollbar-color: #555 #2c2c2c;
    /* Thumb color and track color */
}
