body {
    font-family: 'Georgia', serif;
    background-color: #eaeaea;
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 18px; /* Increased font size */
}

header {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 8px 0; /* Reduced padding by 5% */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
    margin: 20px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    display: inline;
    margin-right: 40px; /* Increased margin for more space */
}

nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 20px;
    transition: background-color 0.3s, color 0.3s;
    background-color: #34495e;
    border-radius: 4px;
    font-size: 16px; /* Increased font size */
}

nav ul li a:hover {
    color: #2c3e50;
    background-color: #ecf0f1;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: #2980b9;
    margin-bottom: 20px;
    font-size: 22px; /* Increased font size */
}

section {
    margin-bottom: 40px;
}

.alert {
    background-color: #f2dede;
    border-left: 6px solid #e74c3c;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px; /* Increased font size */
}

.alert p {
    margin: 0;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul li {
    background-color: #ecf0f1;
    margin: 5px 0;
    padding: 10px;
    border-left: 4px solid #2980b9;
    font-size: 16px; /* Increased font size */
}

ul li a {
    text-decoration: none;
    color: #2980b9;
}

ul li a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 16px; /* Increased font size */
}

input, textarea, select, button {
    margin-bottom: 20px;
    padding: 15px;
    font-size: 16px; /* Increased font size */
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
    width: 100%; /* Ensure all form elements are the same width */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

input:focus, textarea:focus, select:focus {
    border-color: #2980b9;
    outline: none;
}

button {
    background-color: #2980b9;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #1c5980;
}

footer {
    background-color: #2980b9;
    color: white;
    text-align: center;
    padding: 2px 0; /* Reduced padding by 5% */
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 16px; /* Increased font size */
}

.flashes {
    list-style-type: none;
    padding: 0;
}

.flashes li {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px; /* Increased font size */
}

.error {
    background-color: #f8d7da;
    color: #721c24;
}

.success {
    background-color: #d4edda;
    color: #155724;
}
