#profileEditor {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    background: #030303;
    /* padding: 20px; */
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    min-width: 300px;
    width: 700px;
    height: 900px;
    font-family: Consolas, monospace;
}



.sched-employee-header-right-label {
    margin: 0px;
}

.sched-employee-profile-header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    size: 20px;
}


.sched-employee-header-right-indicator {
    margin-left: 10px;
    margin-right: 24px;
    padding: 4px 8px;
    border: 1px solid #555;
    color: black;
}

.profile-editor-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 10%
}

.profile-editor-header h3 {
    font-size: 24px;
    /* margin-top: 10px;
    margin-bottom:10px; */
    margin-left: 15px;
    font-family: Consolas, monospace;
}



.profile-editor-body {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    height: 70%;
}

.profile-editor-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 50%;
    margin-left: 15px;
}

.profile-editor-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;

}

.venue-ban-checklist-row,
.employee-type-checklist-row {
    height: 25px;

}

.sched-employee-profile-editor-label {
    font-size: 20px;
    font-weight: bold;
    font-family: Consolas, monospace;
}

.sched-employee-profile-editor-text-input {
    font-size: 20px;
    font-weight: bold;
    font-family: Consolas, monospace;
}

.sched-profile-editor-color-swatch-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.sched-profile-editor-color-swatch:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}



.profile-editor-lower-body {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 10%;
    margin-left: 15px;
}

.profile-editor-lower-body div {
    font-size: 20px;
    font-weight: bold;
    font-family: Consolas, monospace;
}

.profile-editor-lower-body input {
    font-size: 20px;
    font-weight: bold;
    font-family: Consolas, monospace;
    width: 71%;
    margin-left: 15px;
}


.profile-editor-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 10%;
}

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

.sched-employee-profile-venue-banned-checkbox {}

.sched-employee-profile-editor-checkbox label {
    font-size: 20px;
    font-weight: bold;
    font-family: Consolas, monospace;
}

#profileEditorBeefsButton {
    height: 100%;
    font-size: 28px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    color: red;
    cursor: pointer;
    border: 5px solid #555;
    padding: 10px;
    font-weight: 1000;
}

#profileEditorBeefsButton:hover {
    background-color: #FFF;
}

#profileEditorCancelButton,
#profileEditorSaveButton,
#profileEditorDeleteButton {
    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%;
}

#profileEditorCancelButton:hover,
#profileEditorSaveButton:hover {
    color: white;
    background-color: #555;
}
