/* styles.css */

/* Overall page styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

/* Navigation bar at the top */
.nav-bar {
    background: #3498db;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center nav links horizontally */
}

/* Styling for nav links */
.nav-bar a {
    color: white;
    text-decoration: none;
    margin: 5px 10px;
    font-weight: bold;
}

/* Main content area box */
.main-content {
    padding: 15px;
    max-width: 600px;
    margin: auto;
    background: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 20px;
}

/* Form elements */
form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Submit button */
form button {
    padding: 10px 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

form button:hover {
    background: #2980b9;
}

/* Logo container - now positioned in the normal document flow below the header */
.logo-container {
    margin: 20px auto;
    text-align: center; /* Center logo horizontally */
}

/* Logo image size */
.logo {
    height: 60px;
    width: auto;
}
