/* Basic reset */
body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding-top: 60px; /* Ensure content is below the fixed navbar */
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 1000; /* Ensure navbar stays above other content */
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
}

/* Container styles */
.container {
    max-width: 960px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* Form styles */
form {
    max-width: 600px;
    margin: 0 auto;
}

.form-label {
    font-weight: bold;
}

/* Page-specific styles */
h1 {
    color: #007BFF;
    font-size: 2.5em;
    margin-bottom: 10px;
}

h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 20px;
}

p {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 10px;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
