/* Allow scrolling on the page only when necessary */
body {
    overflow-y: hidden; /* Enable scroll only when content overflows */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure body takes full viewport height */
    margin: 0;
}

/* Login and Settings container styles */

/* Settings List and Links */
.settings-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.settings-list li {
    margin-bottom: 15px;
}

.settings-list li a {
    display: block;
    padding: 10px;
    color: #007bff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.settings-list li a:hover {
    color: #0056b3;
    border-bottom: 2px solid #007bff;
}

/* Form and Input Styles */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    text-align: left;
    padding-left: 5px;
}

.input-group {
    width: 100%;
    padding: 0 5px;
}

input {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}
