body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 20px;
}

#loginSection, #mainSaection {
    margin-bottom: 20px;
}

button {
    margin: 5px;
    padding: 5px;
}

.status {
    padding: 5px;
    border-radius: 5px;
    color: black;
}

.status.clear {
    background-color: green;
    color: white;
}

.status.not-clear {
    background-color: red;
    color: white;
}

.app-container {
    width: 80%; /* Adjust the width as needed */
    max-width: 600px; /* Maximum width of the container */
    margin: 0 auto; /* Center the container */
    padding: 20px; /* Padding inside the container */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
    background-color: #fff; /* Optional: sets a background color for the container */
}

body {
    font-family: Arial, sans-serif;
    text-align: left; /* Left-align text within the body */
    margin-top: 20px;
    background-color: #f4f4f4; /* Optional: sets a background color for the page */
}

#loginSection, #mainSection, #currentUser, #useDevForm, #useMitllForm {
    margin-bottom: 20px; /* Adds more space between elements */
}

.status-line {
    margin: 5px;
    padding: 5px;
}

.input-box {
    margin: 5px;
    padding: 5px;
    width: 200px;
}

