@font-face {
    font-family: 'ISCIE';
    src: url('/fonts/ISCIE.woff2') format('woff2'), url('/fonts/ISCIE.woff') format('woff');
    font-weight: 100 900;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#app {
    width: 100%;
    height: 100%;
/*    display: grid;
    place-items: center;*/
    box-sizing: border-box;
}

#message-container {
    text-align: center;
    font-size: 3.5em;
    white-space: nowrap;
    z-index:2;
}

#overlay {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 300px;
    box-sizing: border-box;
    z-index: 1;
}

#button-container {
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

#debug-info {
    flex-grow: 1;
    margin-right:-10px;
    margin-top:10px;
    padding: 0;
    overflow-y: scroll;
    text-align: right;
    color:rgba(0,0,0,0.4);
    font-size: 0.7em;
}
/* Webkitベースのブラウザ用 */
#debug-info::-webkit-scrollbar {
    width: 8px; /* スクロールバーの幅 */
  }
  
  #debug-info::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2); /* スクロールバーの色 */
    border-radius: 4px; /* スクロールバーの角を丸める */
  }
  
  #debug-info::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1); /* スクロールバーのトラックの色 */
  }
  

button {
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    border-radius: 50%;
    color: #aaa;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

input {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    color: black;
    height: 30px;
    width: 10em;
    font-size:16px;
}

input::placeholder {
    color: #aaa;
}

