body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    margin: 0;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #262626;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

button {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #262626;
    color: white;
}

table {
    width: 75%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ddd;
    font-size: 18px;
    text-align: center;
    /*background-color: #262626;*/
}


td {
	height: 100px;
}

input {
    width: 100%;
    height: 100%;
    padding: 8px;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0);
    color: black;
    border: none;
    text-align: center;
    font-size: 18px;
}

textarea {
    width: 100%;
    height: 100%;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    resize: none; /* Disable resizing for consistency */
    padding: 5px; /* Optional: Add some padding for better readability */
    font-family: inherit; /* Ensure the font matches other input fields */
    background-color: rgba(0,0,0,0);
    color: black;
    border: none;
    text-align: center;
    vertical-align: middle;
}

.question-id input{
	background-color: white;
	color: black;
	font-size: 25px;
	font-weight: bold;
}

.round-id input{
	font-size: 20px;
	font-weight: bold;
}

.question-number input{
	font-size: 20px;
	font-weight: bold;
}


.value input{
	font-size: 20px;
	font-weight: bold;
}