
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer .footer-links {
    list-style-type: none;
    padding: 0;
}

footer .footer-links li {
    display: inline;
    margin: 0 10px;
}

footer .footer-links li a {
    color: white;
    text-decoration: none;
}

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



.logo{
     width:35px;
}

/* Style the logout button */
.logout-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 10px;
}

.logout-btn:hover {
    background-color: #555;
    border-radius: 4px;
}

.navbar {
    background-color: #333;
    overflow: hidden;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    float: left;
}

.nav-item a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.nav-item a:hover {
 background-color: #111;
}

/* Style the event cards */
.event-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}

/* Title of the event */
.event-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

/* Event date */
.event-date {
    font-size: 1em;
    color: #888;
    margin-bottom: 10px;
}

/* Event location */
.event-location {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

/* Button to view event details */
.btn-details {
    background-color: #333333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-details:hover {
    background-color: #605e5e;
}

.event-body {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}
.event-delete{
    background-color: red;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}

.login-form {
        background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}

.rsvp-form {
        background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}


