.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;
}

.event-description img {
    max-width: 70vw;
    max-height: 70vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}
.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;
}