table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 20px; /* Increased font size */
}

th {
    background-color: #f2f2f2;
    color: #333;
}

tr:hover {
    background-color: #f5f5f5;
}

#formContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    font-size: 18px;
}

#formContainer input {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    box-sizing: border-box;
    font-size: 18px;
}

#formContainer input[type="button"] {
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

#formContainer input[type="button"]:hover {
    background-color: #45a049;
}

td:first-child {
    white-space: nowrap; /* Prevents the text from wrapping */
}

#capsLockMessage {
    display: none;
    color: red;
    font-weight: bold;
}