*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,html {
    padding: 0;
    margin: 0;
    overflow: hidden;

    font-family: 'Outfit', sans-serif;
}

.search_menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    position: absolute;
    top: 5vmin;
    left: 0;

    width: 20vmin;
    height: 30vmin;

    background: linear-gradient(90deg, rgba(255, 127, 80, 0.85), rgba(255, 160, 122, 0.75));
    backdrop-filter: blur(1.5vmin);
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 1vmin 3vmin rgba(0, 0, 0, 0.4);
}

.dark_mode .search_menu {
    background: linear-gradient(90deg, #231932, #0d091e);
}

.search_menu_search_bar {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    margin: 1vmin;
    width: 90%;
    height: 3vmin;
    border-radius: 1vmin;

    transition: ease 0.1s;
}

.search_menu_search_bar:hover {
    transform: scale(1.05);
}

.search_menu_input {
    width: 100%;
    height: 100%;
    border: 0.0625rem solid rgba(255, 255, 255, 0.15);
    border-radius: 1vmin;
    background: rgba(0, 0, 0, 0.25);
    color: #f9f9fb;
    padding: 0 1vmin;
    font-size: 1.4vmin;
    font-family: inherit;
    outline: none;
}

.search_menu_results {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-x: hidden;
    overflow-y: auto;

    margin-bottom: 1vmin;
    width: 90%;
    height: 20vmin;
    border-radius: 1vmin;

    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 0.0625rem solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 1vmin 3vmin rgba(0, 0, 0, 0.4);

    transition: ease 0.1s;
}

.search_menu_results:hover {
    transform: scale(1.05);
}

.no_results {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;

    color: #f9f9fb;
    font-size: 1.5vmin;
    font-weight: 700;
}

.search_menu_app_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

    margin: 0.9vmin;
    width: 7vmin;
    aspect-ratio: 1 / 1;
    border-radius: 30%;

    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 0.0625rem solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 1vmin 3vmin rgba(0, 0, 0, 0.4);

    transition: ease 0.1s;
}

.search_menu_app_icon:hover {
    transform: scale(1.1);
}

.search_menu_power_button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

    margin-bottom: 0.5vmin;
    height: 3vmin;
    width: 90%;
    border-radius: 1vmin;

    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 0.0625rem solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 1vmin 3vmin rgba(0, 0, 0, 0.4);

    transition: ease 0.1s;
}

.search_menu_power_button:hover {
    transform: scale(1.05);
}

.search_menu_power_button_icon {
    height: 80%;
    aspect-ratio: 1 / 1;

    filter: brightness(0) invert(1);
}