body {
    font-family: sans-serif;
    margin: 0;
    background-color: #e8f5e9 !important; 
    padding-top: 60px; /* Add padding to body to offset fixed navbar */
}

#logout-btn {
    padding: 10px 20px;
    cursor: pointer;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #666;
    padding: 10px;
}

form button {
    background-color: blue;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

form input[type="text"], form input[type="email"], form input[type="password"] {
    background-color: white;
    color: black;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.admin-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row !important;
    background-color: green;
    padding: 10px 20px;
    color: white;
    width: 100%;
    box-sizing: border-box;
    position: fixed; /* Fix the navbar to the top */
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure navbar is on top */
}

.logout-button {
    color: white;
    margin-left: auto;
}

.brand {
    color: white;
}

.admin-navbar a:hover {
    color: #ddd;
}

.dashboard-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 60px;
    align-items: center;
    height: 80vh;
}

.dashboard-card {
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dashboard-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.membership-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.member-form {
    display: flex;
    flex-direction: column;
    gap: 1px;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

h1 {
    text-align: center;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.nav-right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.home-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.members-list-container {
    margin: 30px 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.members-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.member-actions {
    display: flex;
    gap: 8px;
}

.edit-btn {
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    background-color: rgb(181, 181, 16);
    color: white;
}

.delete-btn {
    padding: 5px 10px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    background-color: rgb(217, 67, 67);
    color: white;
}

.member-details {
    line-height: 1.5;
}

.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}