/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: #f8f8f8; */
    background-image: url('gombe__logo.png'); /* Replace with your image path */
    background-size: contain; /* Makes the image cover the entire background */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents the background from repeating */
    height: 100vh; /* Ensures the body takes the full viewport height */
}

header {
    background-color: #2e6a47;
    padding: 20px;
    color: white;
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 24px;
}

nav a {
    color: #2e6a47;
    margin: 0 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* Form styles */
form {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #2e6a47;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #3a7f58;
}

/* Table styles */
table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

table th {
    background-color: #2e6a47;
    color: white;
}
.center-nav {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adds spacing between nav items */
    padding: 10px 0; /* Optional padding */
    background-color: #f8f9fa; /* Optional background color */
}

.center-nav a {
    text-decoration: none;
    color: #333; /* Link color */
    font-size: 16px;
    padding: 5px 10px;
}

.center-nav a:hover {
    color: #007bff; /* Hover color */
}
