.agent-office-schedule {
  display: none;

  h2 {
    font-size: 2rem;
    font-weight: 300;
    text-align: left;
    font-family: Roboto, sans-serif;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 0;
    margin-block-start: 0px;
    padding-bottom: 35px;
  }

  h3 {
    font-size: 1.25rem;
    font-weight: 400;
    font-family: Roboto, sans-serif;
    color: #C21B17;
    letter-spacing: 0px;
    margin-block: 0;
    text-transform: capitalize;
  }

  p {
    font-size: 1rem;
    line-height: 28px;
    font-weight: 300;
    font-family: Roboto, sans-serif;
    letter-spacing: 0px;
  }

  p.office-day-name {
    font-weight: 400;
  }
}

#office-hours-modal-body .agent-office-schedule {
  display: block;
}

.agent-office-schedule .office-week {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.agent-office-schedule .office-day {
  background-color: #f8f8f8;
  padding: 1rem;
  border-radius: 6px;
  font-family: Roboto, sans-serif;
  color: #333333;
  font-weight: 400;
  line-height: 1.4;
  font-size: 1rem;
  letter-spacing: 0px;
  text-align: center;
}

.office-hours-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.office-hours-modal .office-hours-modal-inner {
  background: white;
  padding: 4rem;
  border-radius: 8px;
  max-width: 960px;
  width: 90%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

@media (max-width: 1024px) {
  .office-hours-modal {
    align-items: flex-start;
  }

  .office-hours-modal .office-hours-modal-inner {
    margin: 20px;
  }
}

.office-hours-modal .close-office-hours {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #C21B17;
}