.content {
    width: 65%;
    max-width: 960px;
    min-width: 500px;
}

.content-center {
    height: 100%;
}

.content-top {
    padding-top: 20px;
}

.form-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

    width: 100%;
}

.form-top {
    gap:12px;
}

.title {
    font-weight: bolder;
    font-size: 50px;
}

#event {
    width: 100%;
    max-width: 600px;
}

.dropdown_button_container {
    display: inline-block;
    background-color: transparent;
}

.dropdown_button_container:hover {
    cursor: pointer;
}

.dropdown_button {
    transition: all 0.3s ease;
}

.open .dropdown_button {
    transform: rotate(180deg);
}

.event-filters-container {
    width: 100%;
    max-width: 600px;
}

.event-filters-container-inner {
    font-size: 12px;
    display: flex;
    flex-direction: column;
}

.event-filters {
    width: 100%;
    resize: vertical;
    box-sizing: content-box;
}

.display-options-container {
    width: 100%;
    max-width: 600px;
}

.display-options-container-inner {
    font-size: 12px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    row-gap: 5px;
}

.time-inputs-container {
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: flex-start;
}

.stream-name-container {
    display: none;
}

.weeksInput {
    width: 60px;
}

#GO {
    width: 75px;
    height: 30px;
}

input:nth-child(n+2){
    margin-left: 5px;
}