body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

.topnav {
    overflow: hidden;
    background-color: #333;
}

.topnav a {
    height: 20px;
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover, .topnav span:hover {
    background-color: #ddd;
    color: black;
    cursor: pointer;
}

.topnav a.active {
    background-color: #04aa6d;
    color: white;
}

/* Full-width input fields */
input[type=text], input[type=password], input[type=email], input[type=number] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Set a style for all buttons */
button {
    background-color: #04AA6D;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 20px;
}

button:hover {
    opacity: 0.8;
}

.form-container {
    width: 800px;
    padding: 16px;
    margin: auto;
}

.details {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.logout-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
}

.logout {
    width: 20px;
    height: 24px;
}