.event-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
}

.event-header {
    padding: 10px 0 20px 0;
    border-bottom: 1px solid #ddd;
}

.event-header select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.event {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.event:last-child {
    border-bottom: none;
}

.event-date {
    background-color: #304699;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    margin-right: 20px;
}

.event-details {
    flex: 1;
}

.event-tag {
    display: inline-block;
    background-color: #304699;
    color: white;
    padding: 0 15px;
    border-radius: 15px;
    font-size: 10px;
    margin-bottom: 5px;
    font-weight: bolder;
    text-transform: uppercase;
}

.event-time {
    font-size: 14px;
    color: #2d2d2d;
    font-weight: bold;
}

.event-title {
    font-size: 18px;
    font-weight: bold;
    color: #304699;
}

.event-description, .event-location {
    font-size: 16px;
    color: #333;
}

.event-form {
    display: flex;
    flex-direction: row; /* Aligns side by side by default */
    gap: 10px; /* Adds space between the selects */
    padding: 20px;
}

/* Responsive styling for smaller screens */
@media (max-width: 600px) {
    .event-form {
        flex-direction: column; /* Stacks the selects vertically on smaller screens */
    }
}