body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.narrow {
    max-width: 35%;
}

.wide {
    max-width: 90%;
}

.navbar {
    max-width: 15%;
}

.content {
    max-width: 75%;
    margin-left: 1%;
}

.medium {
    max-width: 60%;
    min-width: 500px;
}

.header {
    margin-bottom: 20px;
}

.header img {
    max-width: 50px;
    vertical-align: middle;
}

.header h1 {
    display: inline-block;
    margin: 0;
    font-size: 24px;
    vertical-align: middle;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

select {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}


input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #084183;
}

.info_text {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
    text-transform: lowercase;
}

.error_text {
    margin-top: 20px;
    font-size: 14px;
    color: #ff0000;
    text-transform: lowercase;
}

.left {
    text-align: left;
}

.email-template {
    border: #555;
    border-style: solid;
    border-width: 1px;
}

.profile {
    display: block;
}

.nav {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    text-transform: uppercase;
    width: 100%;
}

#topbar {
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    position: fixed; /* Keep it fixed at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays above other content */
}

#main-container {
    /* Space for the fixed topbar */
    padding-top: 60px; /* Adjust this to match the topbar's height + padding */
    display: flex; /* Use Flexbox for side-by-side layout */
}

#left-navbar {
    background-color: #555;
    color: white;
    width: 200px; /* Fixed width for the sidebar */
    height: 100vh; /* Make it full viewport height */
    position: fixed; /* Keep it fixed on the left */
    left: 0;
    top: 60px; /* Start below the topbar */
    padding: 20px;
    overflow-y: auto; /* Scrollable if content is too long */
}

#left-navbar a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #777;
}

#left-navbar a:hover {
    background-color: #777;
}

/* 4. CONTENT BLOCK STYLES */
#content-block {
    flex-grow: 1; /* Take up the remaining space */
    margin-left: 200px; /* Space needed for the fixed left navbar */
    padding: 30px;
}

.round {
    border-radius: 50%;
}