/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Container to centralize content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
header nav ul li {
    margin: 0 15px;
}
header nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Main section styles */
main {
    padding: 20px;
    background-color: #f9f9f9;
}
section {
    margin-bottom: 20px;
}
h1, h2, h3 {
    margin-top: 0;
}

/* Form styles */
form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
form label {
    display: block;
    margin: 10px 0 5px;
}
form input[type="text"],
form input[type="date"],
form input[type="url"],
form input[type="time"],
form input[type="file"],
form select,
form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
form button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
form button:hover {
    background-color: #0056b3;
}

/* Map styles */
#map {
    height: 400px; /* Ensure height is defined */
    width: 100%;
    margin-bottom: 20px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Award List Styles */
.award-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px; /* Added margin for spacing */
}
.award-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%; /* Full width on smaller screens */
    max-width: 300px; /* Adjust width for larger screens */
}
.award-list li {
    margin: 5px 0;
    display: flex;
    align-items: center;
}
.award-list input[type="checkbox"] {
    margin-right: 10px; /* Space between checkbox and label */
}
.award-list li:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.event-container {
    display: flex;
    justify-content: center;
}

.event-columns {
    display: flex;
    width: 100%;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 0 10px; /* Space between columns */
    width: 100%; /* Adjust width as needed */
}

.event-list li {
    margin-bottom: 20px; /* Space between items */
}


/* Responsive Design */
@media (min-width: 600px) {
    .award-list {
        width: 30%; /* Adjust width for larger screens */
    }
}

