#employee-roster {
    /* background-color: #030303AA; */
    background-color: #030303;
    /* Slightly lighter gray */
    border: 3px solid #555;
    /* Black border with 4px width */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    /* Right-downward drop shadow */
    padding: 10px;
    /* Optional: Add some padding for better appearance */
    border-radius: 5px;
    /* Optional: Add rounded corners */
    position: fixed;
    /* Ensure the element is positioned */
    z-index: 1000;
    /* High z-index value to stay on top */
    width: 290px;
    /* Set a specific width */


    height: 626px;
    /* Set a specific height */
    /* Add vertical scrollbar when content overflows */
    overflow-y: auto;

}

#employee-roster-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#schedRosterAddEmployeeButton {
    cursor: pointer;
    color: #555;
    font-size: 20px;
    font-family: Consolas, monospace;
    margin-right: 6px;
}

#schedRosterAddEmployeeButton:hover {
    color: white;
}

#employee-roster-options {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    /* height: 70px; */
}

#schedRosterNameInput {
    font-size: 20px;
    font-family: Consolas, monospace;
    width: 130px;
    height: 100%;
    /* margin-left: 5px; */
    /* margin-bottom:10px; */
}

#schedRosterEmployeeTypeSelect {
    background-color: #030303;
    color: #ffffff;
    font-family: Consolas, monospace;
    font-weight: bold;
    font-size: 20px;
    width: 100px;
    height: 100%;
    margin-right: 5px;
    cursor: pointer;
}

#schedRosterClearFilterButton:hover {
    cursor: pointer;
    color: red;

}

.employee-roster-options-row {
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 20px;
    border-bottom: 3px solid #555;
}


.roster-card-left {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}


.roster-profile-button,
.roster-sms-button {
    cursor: pointer;
    color: #fff;
    margin-left: 10px;
}

.roster-profile-button:hover,
.roster-sms-button:hover {
    color: #030303;
}



#employee-roster-h3 {
    /* text-align: center; */
    margin: 0;
    /* margin-top:10px; */

    /* margin-left: 5px; */
    color: white;
    cursor: pointer;
    font-family: Consolas, monospace;
}

#employee-roster-h3:hover {
    color: #555;
}


.employee-card {
    background-color: #f8f8f8;
    /* Lighter grey background */
    border-radius: 1px;
    /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Drop shadow */
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: Consolas, monospace;
}

.employee-card:hover {
    color: #030303;
}

.sched-roster-employee-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.sched-roster-selected-employee-card {
    background-color: #555 !important;
}
