@font-face {
    font-family: 'Digital7Mono';
    src: url('../fonts/digital-7-mono.ttf') format('truetype');
}

.menu {
    transition: transform 0.3s ease-in;
}

.search-bar {
    transition: left 0.3s ease-in;
}

#clock_sec {
    font-size: 60%;
    margin-left: 2.5%;
}

#clock_ampm {
    font-family: 'Courier New', Courier, monospace;
    margin-left: 2.5%;
    font-size: 60%;
}

.clock_text {
    color: #ffffff;
    /* Change the clock color to green */
    font-family: 'Digital7Mono';
    display: flex;
    justify-content: center;
    align-items: center;
}

#clock_hour,
#clock_min,
#clock_sec {
    width: 2ch;
   
    text-align: center;
   /
}

.glass-container {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem;
    /* Add padding to ensure space around the text */
    margin: 1rem auto;
    /* Center the container */
    max-width: 600px;
    /* Limit the width of the container */
    margin-top: 20px;
    z-index: -1;
}

#next_wakt_name {
    color: #000000;
}

#next_wakt_time {
    color: #000000;
}

#searchContainer {
    position: relative;
}

#searchBar {
    z-index: 1001;
}

#searchResults {
    z-index: 1000;
    padding-top: 10px;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.fade-in.visible {
    opacity: 1;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}