#schedAddEventDialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30000000;
    background-color: #030303;
    border: 3px solid #555;

    border-radius: 5px;
    width: 700px;
    height: 900px;

    display: flex;
    flex-direction: column;

    /* opacity: 0.95; */

}

#schedAddEventDialogHeader {
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#schedAddEventDialogHeader h3 {
    font-size: 24px;
    margin-top: 10px;
    /* margin-bottom: 10px; */
    margin-left: 15px;
    font-family: Consolas, monospace;
}

#schedAddEventDialogBody {
    height: 700px;
    width: 100%;
    display: flex;

}

#schedAddEventDialogFooter {
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#schedAddEventDialogCancelButton,
#schedAddEventDialogCloneButton,
#schedAddEventDialogSaveButton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #808080;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 20px;
    font-family: Consolas, monospace;
    height: 100%;
}

#schedAddEventDialogCancelButton:hover,
#schedAddEventDialogCloneButton:hover,
#schedAddEventDialogSaveButton:hover {
    background-color: #555;
}


#schedEventEditorVenueSelect {
    width: 90%;
    height: 90%;
    font-size: 20px;
}


.sched-add-event-dialog-body-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 50%;
    margin-left: 15px;
}

.sched-add-event-dialog-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
}

.sched-tall-add-event-row {
    height: auto;
}

.sched-add-event-dialog-row-label {
    font-size: 20px;
    font-weight: bold;
    font-family: Consolas, monospace;
}

.sched-add-event-dialog-text-input {
    font-size: 20px;
    font-weight: bold;
    font-family: Consolas, monospace;
    width: 90%;
}

.sched-add-event-checklist-row {
    height: 25px;
}

.sched-add-event-checkbox {}

.sched-add-event-checkbox label {
    font-size: 20px;
    font-weight: bold;
    font-family: Consolas, monospace;
}

.sched-add-event-footer-left,
.sched-add-event-footer-right {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
}
