/* Global Styles */
body {
    text-align: center;
    font-family: Arial, sans-serif;
}

h1, h2 {
    text-align: center;
}

/* Header Styles */
.header {
    text-align: center;
    padding: 10px;
}

.logo {
    display: inline-block;
    float: left;
    width: 200px;
    height: 200px;
}

.banner {
    background: url('{% static 'images/banner.jpg' %}') no-repeat center center;
    height: 200px;
    width: 100%;
    background-size: cover;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-left, .nav-right {
    display: flex;
    gap: 15px;
}

.nav-right span {
    margin-left: 10px;
}

.nav-bar a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.nav-bar .dropdown {
    position: relative;
    display: inline-block;
}

.nav-bar .dropbtn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: white;
    font-weight: 500;
}

.nav-bar .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fafafa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
    min-width: 160px;
}

.nav-bar .dropdown-content a {
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
}

.nav-bar .dropdown-content a:hover {
    background-color: #f1f1f1;
}

.nav-bar .dropdown:hover .dropdown-content {
    display: block;
}

.logout-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.footer-left, .footer-middle, .footer-right {
    flex: 1;
    text-align: center;
}

.footer-left {
    text-align: left;
}

.footer-middle {
    text-align: center;
}

.footer-right {
    text-align: right;
}

/* New Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    width: auto;
    margin-right: 10px;
}

.form-group .error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.form-group input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}
.boolean-fields {
    display: flex;
    gap: 20px;
    align-items: center;
}

.boolean-fields label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}

.submit-button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.submit-button:hover {
    background-color: #0056b3;
}

/* Form Styles 
.form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.form-group label {
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.form-group input {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ced4da;
    border-radius: 4px;
    text-align: center;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}
*/


/* Table Styles */
.items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.items-table th, .items-table td {
    padding: 15px;
    border: 1px solid #dee2e6;
    text-align: center;
}

.items-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.item-image {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Pagination Styles */
.pagination {
    text-align: center;
    margin-top: 20px;
}

.step-links {
    display: inline-block;
    padding: 0;
    list-style: none;
}

.step-links a {
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #dee2e6;
    color: #007bff;
    text-decoration: none;
    border-radius: 4px;
}

.step-links a:hover {
    background-color: #007bff;
    color: white;
}

.step-links .current {
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
    border-radius: 4px;
}
/* About Us Page Styles */
.about-us-container {
    text-align: center;
    padding: 20px;
}

.members-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Chairman Styling */
.chairman {
    margin-bottom: 20px;
}

/* Treasurer and Secretary Styling */
.treasurer-secretary {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between Treasurer and Secretary */
    margin-bottom: 20px;
}

/* Committee Members Styling */
.committee-members {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for multiple members */
    justify-content: center;
    gap: 20px; /* Space between Committee Members */
}

.additional-content {
    margin-top: 40px;
    text-align: center;
}

.content-block {
    margin-bottom: 20px;
}