/* Top Header */
.scheduler-title-header-container {
  display: flex;
  margin-bottom: 5px;
  width: 100%;
}
.scheduler-title-header {
  flex: 2;
  font-size: 1.2rem;
  margin: auto;
}
.scheduler-button-new {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 10px 13px;
  font-weight: bold;
  background-color: #5865F2;
  border: none;
  color: whitesmoke;
  border-radius: 5px;
  font-size: 1rem;
}
.scheduler-button-new:hover { background-color: #4865C2; }
.scheduler-button-new .fa-icon { margin: auto; margin-right: 5px; text-align: center; }
.button-caption { margin: auto; text-align: center; padding-bottom: 3px; }
.scheduler-thin-hr {
  border: none;
  background-color: lightblue;
  height: 1px;
  margin-bottom: 10px;
}

/* Schedule */
.schedule-container {
  --schedule-back-color: blue; /* not use now, but to use it just var(--schedule-back-color) */
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  border: solid 0.75px rgba(150, 50, 100, 1);
  width: 75%;
}
.schedule-header-and-time-wrapper {
  display: flex;
  flex-direction: column;
  background-color: hsl(200, 50%, 50%);
  border: none;
  text-align: left;
}
.schedule-header-and-time-wrapper:hover,
.schedule-header-and-time-wrapper:focus {
  cursor: pointer;
  background-color: hsl(200, 80%, 50%);
}

.schedule-title-header {
  display: flex;
  width: 100%;
}
.schedule-title-header .schedule-title {
  flex: 2;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 10px;
  margin: auto;
}
.schedule-title-header .schedule-delete-button {
  padding: 10px;
  margin: auto;
}

.schedule-time-wrapper {
  color: whitesmoke;
  padding: 10px;
}
.schedule-time { font-weight: bold; }

.schedule-days-wrapper {
  display: flex;
  justify-content: space-around;
}

.schedule-day-button {
  flex: 1;
  background-color: rgba(111, 120, 250, 1);
  border: none;
}
.schedule-day-button:hover {
  background-color: rgba(100, 100, 250, 1);
  transform: scale(1.05);
  color: floralwhite;
}
.schedule-day {
  padding: 5px;
  text-align: center;
  margin: auto;
}
.schedule-day-check {
  display: flex;
  justify-content: center;
  padding: 5px;
  margin: auto;
}
.hide-check { visibility: hidden; }

.schedule-users-list-header {
  padding: 10px;
  color: whitesmoke;
  background-color: rgba(50, 50, 130, 1);
}
.schedule-users-list-table {
  width: 100%;
}
.schedule-users-list-table th { text-align: left; }
.schedule-users-list-table th:nth-child(4) { text-align: center;   }
.schedule-users-list-table th, td { padding: 5px; }
.user-check-button {
  background-color: rgba(255, 121, 18, 1);
  border-style: hidden;
  display: flex;
  justify-content: center;
  padding: 5px;
  padding-top: 8px;
  padding-left: 6px;
  margin: auto;
  height: 30px;
  width: 30px;
}
.user-check-button:hover { background-color: rgba(255, 121, 18, 0.8); }

/* Schedule Form Style */
.schedule-form .pospro-action-btn { float: right; }

.schedule-form-container {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
}
.schedule-form-container label {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  font-weight: bold;
}
.schedule-form-time-container {
  display: flex;
  justify-content: space-between;
  width: 200px;
}
.schedule-form-time-container select {
  padding: 5px;
  width: 60px;
}
.schedule-form-container label > input {
  flex: 1;
  padding: 5px;
}

.schedule-form-button-container {
  display:flex;
  justify-content: flex-end;
}
.schedule-checkbox-container {
  display: flex;
  font-weight: bold;
}
.schedule-checkbox-container input[type=checkbox],
.schedule-checkbox-container label {
  margin: auto;
  margin-left: 0;
  margin-right: 0;
}

.disable-container {
  pointer-events: none;
  color: lightgrey;
  opacity: 0.5;
}
