@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Roboto&display=swap");

* {
    font-family: "Roboto", "Noto Sans JP", sans-serif;
}
#search {
    display: flex;
    justify-content: center;
    z-index: 99;
    position: relative;
    top: 26vh;
}
#search #input {
    width: 485px;
    /* 680px以下 */
    height: 42px;
    padding: 0 40px;
    border-radius: 21px;
    border: none;
    outline: 0;
    font-size: 16px;
}
#app-icon {
    position: relative;
    z-index: 100;
    user-select: none;
    color: white;
    opacity: 0.8;
    font-size: 30px;
    margin-top: 20px;
    left: calc(100% - 60px);
}
#app-icon:hover{
    cursor: pointer;
}
#apps {
    position: relative;
    z-index: 99;
    left: calc(100% - 330px);
    top: -35px;
    width: 270px;
    max-height: 400px;
    background: #2f2f2f;
    padding: 15px;
    border-radius: 10px;
    overflow: auto;
    display: none;
}
#apps::-webkit-scrollbar {
    display: none;
}
#apps #app-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
#apps #app-box .one-app {
    width: 80px;
    height: 90px;
    overflow: hidden;
    border-radius: 7px;
}
#apps #app-box .one-app:hover {
    background: #585858;
}
#apps #app-box .one-app a {
    display: block;
    text-decoration: none;
    color: black;
}
#apps #app-box .one-app a .one-app-icon {
    width: 40px;
    height: 40px;
    margin: 15px auto;
}
#apps #app-box .one-app a .one-app-icon img {
    width: 100%;
    height: 100%;
    user-select: none;
}
#apps #app-box .one-app a .one-app-title {
    color: white;
    opacity: 0.8;
    text-align: center;
}
#apps #add-app {
    color: white;
    opacity: 0.8;
    text-align: center;
    margin-top: 8px;
}
#apps #add-app a{
    color: white;
    text-decoration: none;
}
#apps #add-app:hover {
    cursor: pointer;
}
