body {
    font-family:'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    margin-top: 40px;
    background-color: whitesmoke;
}
input {
    padding: 10px;
    font-size: 16px;
}
button {
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    color:green;
}
.result {
    margin-top: 16px;
    font-size: 16px;
    color: black;
}
.word-list {
    margin-top: 16px;
    margin-bottom:10px;
    font-size: 16px;
    color: green;
}
.wrong-guesses {
    font-size: 16px;
    color: grey;
    margin-top: 16px;
}
.timer {
    font-size: 16px;
    color: lightgrey;
    margin-top: 16px;
}
.outlined {
    display: inline-block; /* Allows the letters to be displayed in a row */
    padding: 4px; /* Space inside the box */
    margin: 2px; /* Space between letters */
    border: 2px solid green; /* Green outline */
    border-radius: 4px; /* Optional: rounded corners */
    font-size: 16px; /* Font size for the letters */
    font-weight: bold; /* Make the letters bold */
}
.matched {
    background-color: lightgreen;
}
.progress-container {
    width: 40%; /* Set a specific width for the container */
    max-width: 200px; /* Optional: set a maximum width */
    background-color: darkgrey;
    border-radius: 5px;
    overflow: hidden;
    height: 12px;
    margin: 0 auto;
    margin-bottom:16px;
    position: relative;
}
.progress-bar {
    height: 100%;
    background-color: green;
    width: 0; /* Start at 0% */
    transition: width 0.5s; /* Smooth transition */
}
.percentage {
    position: absolute; /* Position percentage text absolutely */
    right: 5px; /* Position it to the right */
    top: 0; /* Align it to the top of the container */
    height: 90%; /* Match the height of the progress bar */
    display: flex;
    align-items: center; /* Center vertically */
    color: black; /* Text color */
    font-size: 12px; /* Adjust font size if needed */
}
#wordInput:focus {
    outline: 1px green; /* Change the outline color to green */
    border-color: green; /* Optional: Change the border color to green */
}
header {
    position: relative; /* Allows absolute positioning of child elements */
    padding: 10px; /* Adjust padding as needed */
}   
.question-mark, .clock-symbol {
    position: absolute; /* Position it absolutely within the header */
    top: 10px; /* Adjust the top position */
    font-size: 12px; /* Size of the symbols */
    text-decoration: none; /* Remove underline */
    color: black; /* Color of the symbols */
    border: 2px solid grey; /* Border color and thickness */
    border-radius: 50%; /* Makes the background circular */
    width: 20px; /* Width of the circle */
    height: 20px; /* Height of the circle */
    display: flex; /* Use flexbox to center the content */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}    
.clock-symbol {
    right: 40px; /* Adjust the right position to avoid overlap with the question mark */
}
.question-mark {
    right: 10px; /* Adjust the right position for the question mark */
}
ul {
    list-style-type: disc; /* Default bullet style */
    padding-left: 30px; /* Adds space to the left of the list */
    font-family: inherit; /* Inherit font from body */
    font-size: inherit; /* Inherit font size from body */
}
li {
    margin-bottom: 10px; /* Adjust this value to increase/decrease space */
}
.container {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center elements horizontally */
    width: 100%; /* Full width of the page */
    padding: 0 5px; /* Add horizontal padding to the container */
}
.element {
    text-align: left; /* Aligns text to the left */
    max-width: 600px; /* Optional: Set a max width for the element */
    width: 100%; /* Allow the element to take full width of the container */
    padding-left: 20px; /* Adds padding to the left */
    margin: 1px 0; /* Add vertical margin to control space between elements */
    box-sizing: border-box; /* Include padding in width calculation */
}