@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');
html, body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
}
* {
    box-sizing: border-box;
    font-family: 'M Plus 1' , sans-serif;
    padding: 0;
    margin: 0;
    user-select: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
body {
    margin: 0;
    padding: 0;
    background-color: #0073df;
}
h1 {
    background: #0073df;
    border-radius: 100px;
    color: #fff;
    padding: 25px;
    text-align: center;
    font-weight: 900;
}
#bg {
    background-image: url("/img/bg.png");
    background-size: 200px 200px;
    position: fixed;
    background-position: center;
    top: -500px;
    left: -500px;
    right: -500px;
    bottom: -500px;
    transform: rotate(45deg);
}
main {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    background: #fff;
    min-height: 100vh;
}
#loginform {
    display: flex;
    flex-direction: column;
    gap: 10px;
    label {
        padding: 10px 0;
        p {
            padding: 10px 0;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 500;
            svg {
                stroke-width: 2.5px;
                color: #0073df;
            }
        }
    }
    input, select, textarea {
        width: 100%;
        padding: 15px;
        border: 2px solid #333;
        border-radius: 10px;
        font-size: 16px;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        &:focus {
            border-color: #0073df;
            box-shadow: 0 0 0 3px #97d5d6;
        }
        &:disabled {
            opacity: 0.5;
        }
    }
    textarea {
        resize: vertical;
        height: 140px;
    }
    button {
        background: #0073df;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 300px;
        border: 2px solid #0073df;
        border-radius: 100px;
        font-size: 20px;
        padding: 20px;
        margin: 0 auto;
        gap: 10px;
        font-weight: 700;
        margin-top: 20px;
        svg {
            stroke-width: 3px;
        }
    }
}
hr {
    margin: 30px 0;
    border: none;
    border-top: 2px dotted gray;
}

section {
    padding: 20px 0;
}

#text {
    h2 {
        font-size: 20px;
        padding: 10px 0;
    }
    p {
        font-size: 14px;
        padding: 10px 0;
        a {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            svg {
                width: 16px;
                height: 16px;
                stroke-width: 2.5px;
            }
        }
    }
}
#texta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    svg {
        width: 16px;
        height: 16px;
        stroke-width: 2.5px;
    }
}

a {
    color: #0073df;
    text-decoration: none;
    font-weight: 700;
}

#footer {
    font-size: 10px;
    text-align: center;
}

#keyh1 {
    display: flex;
    flex-direction: column;
    span {
        font-size: 16px;
        font-weight: 900;
        font-weight: 500;
    }
}

#menu {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    bottom: 0;
    width: 100%;
    max-width: 700px;
    left: 50%;
    transform: translateX(-50%);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    overflow: hidden;
    background: #0073df;
    border: 2px solid #0073df;
    border-bottom: none;

    a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        width: 100%;
        padding: 20px;
        border: none;
        height: 80px;
        color: #fff;
        svg {
            width: 25px;
            height: 25px;
            stroke-width: 3px;
        }
        &.active {
            background: #fff;
            color: #0073df;
        }
    }
    div {
        width: 2px;
        height: 80px;
        background: #fff;

    }
}

#roomno {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    span {
        color: #0073df;
        font-size: 30px;
        font-weight: 900;
    }
}

.roomall {
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    #title {
        font-size: 25px;
        font-weight: 700;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 5px;
        svg {
            width: 20px;
            height: 20px;
            stroke-width: 3px;
        }
        span {
            font-size: 16px;
            margin-bottom: -8px;
        }
    }
    #rtext {
        color: #fff;
        margin-top: 10px;
    }
}

#room01 {
    background: #0073df;
    display: none;
}
#room02 {
    background: orange;
    * { color: #000 !important;}
    display: none;
}
#room03 {
    background: brown;
}

#rinfo {
    font-size: 13px;
    margin-top: 20px;
}

#infonav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    a, button {
        width: 100% !important;
        display: flex !important;
        gap: 10px !important;
        align-items: center !important;
        justify-content: center !important;
        background: #0073df !important;
        color: #fff !important;
        padding: 10px !important;
        border-radius: 5px !important;
        font-weight: 700 !important;
        border: none !important;
    }
}
select {background: #fff;}
/**/
#ios-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}
#ios-alert {
    background: rgba(255, 255, 255, 0.9);
    width: 270px;
    border-radius: 13px;
    overflow: hidden;
    animation: alert-pop 0.2s ease-out;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
@keyframes alert-pop {
    from { opacity: 0; transform: scale(1.2); }
    to { opacity: 1; transform: scale(1); }
}
.ios-alert-content {
    padding: 20px 15px;
}
.ios-alert-title {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 5px;
}
.ios-alert-message {
    font-size: 13px;
}
.ios-alert-btn {
    border-top: 1px solid rgba(60, 60, 67, 0.2);
    color: #007aff;
    font-size: 17px;
    font-weight: 600;
    padding: 12px;
    cursor: pointer;
    background: transparent;
    width: 100%;
    border-left: none;
    border-right: none;
    border-bottom: none;
}
.ios-alert-btn:active {
    background: rgba(0, 0, 0, 0.05);
}