/* Version: v086 */

body {
    font-family: 'Noto Sans', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #008000; /* Green background */
    color: white; /* Font color */
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.top-box, .bottom-box {
    background-color: #009000; /* Slightly lighter shade of green */
    padding: 0px; /* Remove padding */
    margin: 10px;
    border: none; /* Remove borders */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc((2em + 10px) * 2); /* Adjust height to fit two lines of text */
}

.line {
    margin: 0px; /* Remove margin */
    color: white; /* Font color */
    text-align: center; /* Center align text */
    background-color: transparent; /* Transparent background */
    font-size: 2em; /* Set font size */
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflow text */
    width: 100%; /* Ensure the div takes up the full width */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add text shadow for contrast */
    -webkit-text-stroke: 0; /* Remove gray outline */
}

.settings {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.column {
    flex: 1;
    margin-right: 10px;
}

.column:last-child {
    margin-right: 0;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.settings .column select,
.settings .column input[type="number"],
.settings .column input[type="password"] {
    width: 100%; /* Ensure input fields and dropdowns have the same width */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}