@import url('https://fonts.googleapis.com/css2?family=Prompt&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai&display=swap');
html,
body {
  background-color: #f5f5f5;
  font-family:'Noto Sans Thai', sans-serif !important;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    margin: 0 0 10px 0;
    align-items: center;
    text-align: center;
}

.full {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}
.container {
    max-width: 800px;
    margin: 0;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
}

#userDetails {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
    margin: 10px;
}

#problem {
    font-size: 50px;
    margin-bottom: 20px;
    text-align: center;
}

#userAnswer {
    font-size: 16px;
    padding: 8px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: #000000 0px;
    background-color: bisque;
    opacity: 80%;
}

#userAnswer:hover, #userAnswer:active {
    opacity: 100%;
}

button {
    font-size: 16px;
    padding: 10px 20px;
    background-color: #008cff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    opacity: 80%;
}

.Submit {
    background-color:rgb(182, 255, 182);
    color: #000000;
    font-weight: bolder;
}

.Next {
    background-color:midnightblue;
}

button:hover {
    opacity: 100%;
}

#currentScore {
    font-weight: bold;
}

/* Add more CSS styling as needed */
.userzone {
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    width: 100%;
    margin: 0!important;
    padding-top: 10px;
}
.scoreboard {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    z-index: 999999999;
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    display: none;
}

.scoreboard h1{
    color: #000000;
    text-align: center;
}
.scoreboard button {
    background-color: red;
    font-size: 16px;
    padding: 10px 20px;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0 0 10px 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
}
#scoreboardBtn {
    width: 100%;
    border-radius: 0 0 10px 10px;
}
.SignOut {
    background-color: red;
    height: 30px;
    font-size: 13px;
    padding: 0 10px 0 10px;
}
.keyboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.key {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Makes the button round */
    font-size: 16px;
    text-align: center;
    border: 1px solid #ccc;
    cursor: pointer;
    background-color: #fff;
    color: #000000;
}

.clear{
    background-color: #ffa1a1;
    padding: 0;
}

.clear:hover {
    background-color: #ff7070!important;   
}

.skip{
    background-color: #c3c3c3;
    padding: 0;
}

.skip:hover {
    background-color: rgb(151, 151, 151)!important;   
}

.key:hover {
    background-color: #feffee;
    font-size: 20px;
    transition: ease-in-out 0.3s;
    border: 1px solid #8d8d8d;
    font-weight: bold;
}
.center {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
    margin-top: 10px!important;
}