body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 350px;
}

h2 { margin-top: 0; }

input, select, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#logout-button {
    width: auto;
    background-color: #ff4d4d;
    color: white;
    border: none;
    cursor: pointer;
}

#save-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

.radio-group {
    margin: 10px 0;
}

.radio-group input {
    width: auto;
}