body {
    background: white;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222222;
    color: white;
    padding: 6px;
    border-radius: 12px;
}

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
}

.navbar-right form {
    display: flex;
    white-space: nowrap;
    margin-left: 10px;
    margin-right: 10px;

}

.navbar-left a,
.navbar-right a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
}

.navbar-right button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: inline;
    font: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.navbar-right button:hover {
    text-decoration: underline;
}

.event-card {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.event-overlay {
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.55);
    color: white;
    padding: 20px;
}

.event-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 8px;
}

.field-error {
    color: #c0392b;
    font-size: 0.9em;
}

.help-text {
    display: block;
    font-size: 0.85em;
    color: #666;
}

.responsive-img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.my-link {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.my-link:visited {
    color: inherit;
}

.my-link:hover {
    text-decoration: underline;
    opacity: 0.85;
}

.event-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.event-filters input,
.event-filters select {
    padding: 6px;
}

.event-filters button {
    padding: 6px 12px;
}