/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Adjust layout to vertical stack */
    align-items: center;
    justify-content: center; /* Center content vertically */
    min-height: 100vh; /* Ensure body covers the entire viewport */
}

.container {
    width: 100%;
    max-width: 1200px; /* Adjust container width as needed */
    margin: 0 auto; /* Center align container */
    padding: 20px;
    box-sizing: border-box;
}

/* Header styles */
header {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    width: 100%;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

nav {
    margin-top: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex; /* Display menu items horizontally */
    justify-content: right; /* Center align menu items horizontally */
}

nav ul li {
    margin-right: 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main content container */
.main-content {
    background-color: #fff;
    width: 100%;
    max-width: 800px; /* Adjust content width as needed */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: fixed;
    bottom: 0;
}

/* Additional links */
.additional-links {
    text-align: center;
    margin-top: 10px;
}

.additional-links a {
    color: #4CAF50;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.additional-links a:hover {
    text-decoration: underline;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center; /* Center align text in cells */
}

th {
    background-color: #f2f2f2;
}

.registration-container {
    background-color: #fff;
    width: 400px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto; /* Center horizontally and create space around */
}
.logo {
    margin-right: 20px; /* Adjust spacing between logo and content */
}


.logo img {
    max-width: 100px; /* Adjust the size of the logo as needed */
    height: auto;
}
@media screen and (max-width: 600px) {
    .registration-container {
        width: 90%; /* Adjust width for smaller screens */
        margin: 10px auto; /* Adjust margin for smaller screens */
    }
}

h2 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
   /*align-items: center; /* Center align form contents */
}

label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    text-align: left; /* Ensure label text is left-aligned */
}

input[type="date"],
input[type="number"],
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
input[type="submit"] {
    width: calc(100% - 20px); /* Adjust input and button width */
    padding: 12px; /* Increase padding for input and button */
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

select {

    width: calc(100% - 20px); /* Adjust input and button width */
    padding: 12px; /* Increase padding for input and button */
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}


input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.additional-links {
    text-align: center;
    margin-top: 10px;
}

.additional-links a {
    color: #4CAF50;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.additional-links a:hover {
    text-decoration: underline;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}
