body {
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #2b2b2b; /* Dark background color */
    color: #ffffff; /* Light text color */
}

#app {
    text-align: center;
}

textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    background-color: #404040; /* Dark textarea background color */
    color: #ffffff; /* Light text color */
    border: 1px solid #666666; /* Dark border color */
}

button {
    padding: 10px;
    cursor: pointer;
    background-color: #333333; /* Dark button background color */
    color: #ffffff; /* Light text color */
    border: none;
}

#result {
    margin-top: 20px;
    background-color: #404040; /* Dark result background color */
    color: #ffffff; /* Light text color */
    padding: 10px;
    border-radius: 5px;
    justify-content: center;
}

/* New style for the terminology box */
#terminologyBox {
    position: fixed;
    top: 0;
    right: 0;
    background-color: #555555; /* Grayish box background color */
    color: #ffffff; /* Light text color */
    padding: 10px;
    border-radius: 0 0 0 5px; /* Rounded corner at the bottom left */
    text-align: left;
}


.half{
    opacity: 0.5;
}