body {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.87);
    background-color: #e0e796;
    touch-action: manipulation; /* スクロールを無効化 */
    /* overscroll-behavior: none; スクロールの反動を無効化 */
}

input {
    background-color: transparent;
    border: none;
    color: #313334;
    font-family: "kleeone";
}

input::placeholder {
    color: #94A1A7;
}

input:focus {
    outline: none;
}

input:-webkit-autofill {
    box-shadow: 0 0 0 1000px #CFD4DB inset !important;
    -webkit-text-fill-color: #313334 !important;
}

.login-input {
    color: #ffffff;
    font-family: "kleeone";
    font-size: 50px;
}

.login-input.disable {
    color: #b3b3b3;
}

textarea {
    background-color: transparent;
    border: none;
    color: #a7b492;
    font-family: "kleeone";
    resize: none;
}

textarea:focus {
    outline: none;
}

.lookback {
    color: #6f7e57;
    font-family: "kleeone";
    padding-right: 160px;
}

.lookback::placeholder {
    color: #a7b492;
}

.lookback::-webkit-scrollbar {
    background-color: #7f7f7f;
    border-radius: 10px;
    width: 16px;
}

.lookback::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 10px 10px #a1b128;
}

.message-input {
    overflow: hidden;
}

.message-input::placeholder {
    color: #e0e0e0;
}

#app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
