body {
    font-family: "Times New Roman", Times, serif;
}

#btnlogo {
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#btnAppsList {
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#apps-arrow {
    position: absolute;
    /*bottom: 0px;*/
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #10c94b;
    /* arrow pointing down 
    display: none;*/
}

#allApps {
  transition: margin-top 0.3s ease-in-out;
}

/* Tab buttons */

.tab {
    overflow: hidden;
    border-bottom: 1px solid #ccc;
}

.tab button {
    background-color: #fff;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 20px;
    transition: 0.3s;
    font-size: 16px;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    background-color: transparent;
    /* keep the tab background same as others */
    border-bottom: 4px solid black;
    /* bottom border color for active tab */
    font-weight: bold;
}


/* Tab content */
.tabcontent {
    display: none;
    padding: 20px;
}


.popup {
    position: absolute;
    top: 60px;
    /* slightly below the button (48px height + gap) */
    left: 50%;
    transform: translateX(-50%);
}

.popup-arrow {
    position: absolute;
    top: -3px;
    left: 308%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #ccc;
}



/* searchSuggestions */

#searchSuggestions {
    border: 1px solid #ccc;
    max-height: 400px;
    /* adjust as needed */
    width: 705px;
    display: flex;
    flex-direction: column;
    position: absolute;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

#searchSuggestions .suggestions {
    overflow-y: auto;
    flex-grow: 1;
    /* takes available space */
}

#searchSuggestions .suggestions div {
    padding: 8px;
    cursor: pointer;
}

#searchSuggestions .suggestions div:hover {
    background: #b7ccb4;
    border-radius: 32px 32px 32px 32px;
}

#searchSuggestions .footer {
    padding: 8px;
    border-top: 1px solid #ddd;
    text-align: center;
    background: #fafafa;
    border-radius: 0 0 4px 4px;
    flex-shrink: 0;
    /* prevent shrinking */
}

#searchSuggestions .footer a {
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
}

#searchSuggestions .footer a:hover {
    text-decoration: underline;
}

/* ./searchSuggestions */


/* Footer */
.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.page-wrapper > .footer {
  margin-top: auto; /* pushes footer to the bottom */
}
/* ./Footer */