.staff-page {
  display: flex;
  align-items: flex-start;
background-color: white;
  padding: 16px 4px 0 4px;
  width: 100%;
}
.staff-head {
  height: 3px;
}

.staff-content {
  flex: 1;
  min-width: 0;
}

/* TOP BAR */

.staff-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  height: 58px;
  margin-bottom: 4px;
}

.staff-password-label {
  font-size: 15px;
  color: #000;
}

.staff-password-input {
  width: 166px;
  height: 30px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  padding: 0 8px;
  background: #fff;
}

.staff-generate-btn {
  height: 36px;
  padding: 0 16px;
  border: none;
  border-radius: 4px;
  background: #ffbc00;
  font-size: 14px;
  cursor: pointer;
}

/* RIGHT ICONS */

.staff-side-icons {
  width: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 54px;
}

.staff-add-btn {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #e89a2c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.staff-download-btn {
  border: none;
  background: none;
  color: #e89a2c;
  font-size: 28px;
  cursor: pointer;
}

/* TABLE */

.staff-table-wrapper {
  background: #fff;
  border: 1px solid #bdbdbd;
  height: 532px;
  overflow-y: auto;
}

.staff-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.staff-table th,
.staff-table td {
  border: 1px solid #c4c4c4;
}

/* HEADER */

.staff-table th {
  background: #dcd7d0;
  padding: 0px;
  height: 3px;
  font-weight: 400;
}

.staff-table th input,
.staff-table th select {
  width: 100%;
  height: 20px;
  border: 1px solid #d2d2d2;
  border-radius: 3px;
  padding: 0 6px;
  background: #fff;
  font-size: 13px;
}

/* BODY */

.staff-table td {
  height: 28px;
  padding: 2px 6px;
  font-size: 13px;
  background: #f2f2f2;
  vertical-align: middle;
}

.staff-table tbody tr:nth-child(even) td {
  background: #e8e8e8;
}

.staff-table td:nth-child(1),
.staff-table td:nth-child(9),
.staff-table td:nth-child(10) {
  text-align: center;
}

.staff-check-head {
  text-align: center;
}

.staff-check-head input {
  width: 20px;
  height: 20px;
  margin-bottom: 3px;
}

.staff-table td:last-child {
  text-align: center;
  white-space: nowrap;
}

.staff-action {
  color: #e89a2c;
  font-size: 13px;
  margin: 0 4px;
  cursor: pointer;
}
.staff-add-btn {
  width: 32px;
  height: 32px;
  font-size: 28px;
  font-weight: 300;
  padding-bottom: 4px;
}
.staff-check-head input,
.staff-table td input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #0d6efd;
  margin: 0;
  cursor: pointer;
}
.staff-table th:nth-child(1) {
  width: 65px;
}
.staff-table th:nth-child(2) {
  width: 170px;
}
.staff-table th:nth-child(3) {
  width: 205px;
}
.staff-table th:nth-child(4) {
  width: 90px;
}
.staff-table th:nth-child(5) {
  width: 85px;
}
.staff-table th:nth-child(6) {
  width: 135px;
}
.staff-table th:nth-child(7) {
  width: 170px;
}
.staff-table th:nth-child(8) {
  width: 100px;
}
.staff-table th:nth-child(9) {
  width: 70px;
}
.staff-table th:nth-child(10) {
  width: 70px;
}
.staff-table th:nth-child(11) {
  width: 130px;
}

/* Overlay */

.staff-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.25);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

/* Drawer */

.staff-drawer{
    position:fixed;
    top:0;
    right:-680px;
    width:676px;
    height:100vh;
    background:#efefef;
    box-shadow:-2px 0 10px rgba(0,0,0,.15);
    transition:.35s;
    z-index:1000;
}

.staff-drawer.active{
    right:0;
}

/* Header */

.staff-drawer-header{
    height:40px;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 16px;
}

.staff-drawer-header h2{
    margin:0;
    font-size:18px;
    font-weight:600;
}

.staff-drawer-close{
    border:none;
    background:none;
    color:#fff;
    font-size:22px;
    cursor:pointer;
}

/* Body */

.staff-drawer-body{
    padding:28px 28px 0;
}

.staff-form-row{
    display:flex;
    align-items:center;
    margin-bottom:16px;
}

.staff-form-row label{
    width:160px;
    font-size:14px;
    color:#333;
}

.staff-form-row label::after{
    content:"";
}

.staff-form-row input[type="text"],
.staff-form-row input[type="email"]{
    height:28px;
    border:1px solid #cfcfcf;
    border-radius:6px;
    background:#f7f7f7;
    padding:0 8px;
}

/* Staff */
.staff-form-row:nth-child(1) input{
    width:460px;
}

/* Email */
.staff-form-row:nth-child(2) input{
    width:460px;
}

/* Mobile */
.staff-form-row:nth-child(3) input{
    width:120px;
}

/* Dropdowns */

.staff-form-row select{
    width:192px;
    height:30px;
    border:1px solid #cfcfcf;
    border-radius:6px;
    background:#f7f7f7;
    padding:0 6px;
}

/* Checkbox row */

.checkbox-row{
    align-items:center;
}

.checkbox-row input{
    width:18px !important;
    height:18px !important;
    accent-color:#0d6efd;
    cursor:pointer;
}

/* Footer */

.staff-drawer-footer{
    position:absolute;
    right:32px;
    bottom:28px;
}

.staff-save-btn{
    width:58px;
    height:38px;
    border:none;
    border-radius:6px;
    background:#f5b800;
    cursor:pointer;
    font-size:14px;
}

.staff-cancel-btn{
    width:74px;
    height:38px;
    border:none;
    border-radius:6px;
    background:#7f8790;
    color:#fff;
    margin-left:8px;
    cursor:pointer;
}

.staff-report-drawer{
    position:fixed;
    top:0;
    right:-820px;

    width:812px;
    height:100vh;

    background:#ece8e2;

    box-shadow:-4px 0 18px rgba(0,0,0,.18);

    transition:right .35s ease;

    z-index:1300;
}

.staff-report-drawer.active{
    right:0;
}
/* REPORT WINDOW */
.staff-report-drawer{
    position:fixed;
    top:0;
    right:-820px;

    width:812px;
    height:100vh;

    background:#ece8e2;

    box-shadow:-4px 0 18px rgba(0,0,0,.18);

    transition:right .35s ease;

    z-index:1300;
}
.staff-report-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.25);

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:1299;
}

.staff-report-overlay.active{
    opacity:1;
    visibility:visible;
}

.staff-report-drawer.active{
    right:0;
}

/* HEADER */

.staff-report-header{
    height:40px;
    background:#0d6efd;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 18px;

    color:#fff;
}

.staff-report-header h2{
    margin:0;
    font-size:18px;
    font-weight:600;
}

.staff-report-close{
    border:none;
    background:none;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

/* FILTER BAR */

.staff-report-toolbar{
    display:flex;
    align-items:center;
    gap:8px;

    padding:10px;
}

.staff-report-field{
    display:flex;
    align-items:center;
    gap:8px;

    border:1px solid #8d8d8d;
    background:#ece8e2;

    padding:8px;
}

.staff-report-field label{
    white-space:nowrap;
    font-size:14px;
}

.staff-report-field select{
    width:145px;
    height:30px;

    border:1px solid #cfcfcf;
    border-radius:4px;

    background:#f3f3f3;
}

.staff-report-download-btn{
    width:100px;
    height:38px;

    border:none;
    border-radius:8px;

    background:#ffc107;

    font-size:15px;
    cursor:pointer;
}

/* BODY */

.staff-report-body{
    height:calc(100% - 95px);
    background:#ece8e2;
}