.header .header-actions {
  margin-top: 20px;
}
.header .sticky-button {
  position: fixed;
  right: 100px;
}

#weekly-schedule .schedule-weekdays .actions {
  background-color: #202638;
}
#weekly-schedule .schedule-weekdays .actions a {
  color: #fff;
  padding: 0 10px;
}
#weekly-schedule .schedule-weekdays .heading {
  margin: 0 2px 0 2px;
  background-color: #6e84a3;
  color: white;
  padding: 6px;
  border-bottom: 2px solid #444;
  text-align: center;
}
#weekly-schedule .schedule-weekdays .heading:nth-child(1) {
  border-left: none;
}
#weekly-schedule .schedule-weekdays .heading.today {
  background-color: #2C7BE5 !important;
}
#weekly-schedule .schedule-weekdays .heading a {
  color: #fff;
}
#weekly-schedule .schedule-row .employee {
  margin: 0 2px 0 2px;
  border-bottom: 1px solid #283E59;
  background-color: #e6e6e6;
  padding: 0;
}
#weekly-schedule .schedule-row .employee a.view-employee {
  font-weight: bold;
  color: #263b53;
}
#weekly-schedule .schedule-row .employee-inner {
  padding: 6px;
}
#weekly-schedule .schedule-row .job {
  margin: 0 2px 0 2px;
  font-size: 90%;
  background-color: white;
  border-bottom: 1px solid #444;
  text-align: center;
  padding: 0;
}
#weekly-schedule .schedule-row .job hr {
  margin: 0;
  color: #adadad;
}
#weekly-schedule .schedule-row .job.drop-target {
  background-color: #fff06a;
}
#weekly-schedule .schedule-row .schedule {
  padding: 6px;
  position: relative;
}
#weekly-schedule .schedule-row .schedule.new-schedule {
  color: green;
}
#weekly-schedule .schedule-row .schedule.grayed-out {
  opacity: 0.5;
  pointer-events: none;
}
#weekly-schedule .schedule-row .schedule.delete-mode {
  background-color: #ffcccc;
}
#weekly-schedule .schedule-row .schedule.delete-mode .delete-icon {
  display: inline-block;
}
#weekly-schedule .schedule-row .schedule .delete-icon {
  font-size: 120%;
  display: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  color: red;
}
#weekly-schedule .schedule-row .schedule .delete-icon:hover {
  color: darkred;
}
#weekly-schedule .schedule-row .vacation {
  background-color: #bebebe;
}
#weekly-schedule .schedule-row .unposted {
  font-style: italic;
}
#weekly-schedule .class-prv {
  background-color: #cbe1ff;
}
#weekly-schedule .class-pw {
  background-color: #cbffcb;
}
#weekly-schedule .class-hud {
  background-color: #ffecc8;
}
#weekly-schedule .hours {
  font-weight: bold;
}
#weekly-schedule .no-show {
  color: #9c0000;
}
#weekly-schedule .schedule-row .last-friday,
#weekly-schedule .schedule-weekdays .last-friday {
  display: none;
}

#weekly-notes label.checked {
  text-decoration: line-through;
}

#daily-schedule .form-check {
  padding-top: 8px;
}
#daily-schedule .employee {
  padding: 8px 0;
  margin-top: 8px;
  border-bottom: 1px solid #dfdfdf;
}
#daily-schedule .employee .hours-input {
  width: 80px;
}

.employee-portal .job-list .today {
  background-color: #fff6cf;
}

.manage-whiteboard nav, .manage-whiteboard .header {
  display: none !important;
}
.manage-whiteboard .whiteboard-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  color: black;
  overflow: hidden;
}
.manage-whiteboard .whiteboard-header {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  z-index: 100;
}
.manage-whiteboard .whiteboard-header .close-button {
  color: black;
  font-size: 32px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.manage-whiteboard .whiteboard-header .close-button:hover {
  opacity: 1;
}
.manage-whiteboard .whiteboard-content {
  height: 100vh;
  padding: 15px;
  overflow-y: auto;
}
.manage-whiteboard .whiteboard-jobs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px 40px;
  padding: 0 40px;
  margin: 0 auto;
  max-width: 1800px;
}
.manage-whiteboard .job-row {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.manage-whiteboard .job-row .job-info {
  width: 100%;
  padding: 1px 0;
  display: flex;
  align-items: center;
  font-size: 10px;
  border-radius: 1px;
  background: white;
}
.manage-whiteboard .job-row .job-info .job-name {
  margin-right: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  flex-grow: 1;
}
.manage-whiteboard .job-row .job-info .job-days {
  white-space: nowrap;
  color: #444;
  font-size: 9px;
  flex-shrink: 0;
  font-weight: 600;
}
.manage-whiteboard .job-row.class-pw .job-info .job-name {
  color: #006500;
}
.manage-whiteboard .job-row.class-prv .job-info .job-name {
  color: #0056cb;
}
.manage-whiteboard .job-row.class-hud .job-info .job-name {
  color: #c88300;
}
.manage-whiteboard .job-row .progress-container {
  height: 8px;
  width: 100%;
  background: white;
  border-radius: 1px;
  position: relative;
}
.manage-whiteboard .job-row .progress-container .scale-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #ccc;
  border-radius: 1px;
  overflow: hidden;
}
.manage-whiteboard .job-row .progress-container .scale-bar .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 1px;
  transition: width 0.3s ease;
}
.manage-whiteboard .job-row .progress-container .scale-bar .progress-bar.progress-green {
  background: rgba(76, 175, 80, 0.8);
}
.manage-whiteboard .job-row .progress-container .scale-bar .progress-bar.progress-yellow {
  background: rgba(253, 216, 53, 0.8);
}
.manage-whiteboard .job-row .progress-container .scale-bar .progress-bar.progress-red {
  background: rgba(244, 67, 54, 0.8);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}