/* Base styles */
body {
    background-color: #f4f4f4;
    font-family: 'Arial', sans-serif;
    color: #333333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-weight: normal;
    font-size: 1rem;
}

header .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #333333;
}

header .nav-link {
    font-size: 1.1rem;
    color: #555555;
}

    header .nav-link:hover {
        color: #000000;
    }

.container {
    margin-top: 20px;
    flex: 1; /* Allows the main content to expand and fill space */
}

/* Footer styles */
footer {
    background-color: #f8f9fa;
    padding: 15px 0;
    text-align: center;
    font-size: 0.9rem;
}

    footer a {
        color: #0062cc;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }
.navbar-brand {
    color: #0078d4;
}
/* General form styles */
.student-form {
    margin: 0 auto;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Media queries for responsiveness */
@media (max-width: 600px) {
    .student-form {
        padding: 15px;
    }
}