/* ------------------------------------------- */
.choose_weekday_area{
    border-radius: 10px;
    border: 1px solid #d5d5d5;
    background-color: #f8f8f8;
    display: flex;
    justify-content: space-between;
    margin: 2.5rem auto;
        padding: 1.25rem .625rem;
}

.previous_btn a,
.next_btn a{
    color: var(--fifth_color);
    text-decoration: none;
}

.previous_btn a:hover,
.next_btn a:hover{
    opacity: 0.6;
}

@media (max-width: 550px){
    .btn_text{
        display: none;
    }
}



/* 時間表------------------------------------------- */
.schedule_area{
    width: 100%;
    overflow-x: auto;
}

table.schedule{
    min-width: 570px;
}

table.schedule a{
    background-color: transparent;
}

table.schedule .date{
    font-weight: 400;
}

table.schedule .weekday{
    background-color: var(--sixth_color);
    color: #fff;
}

table.schedule {
    border-collapse: collapse;
    text-align: center;
    width: 100%;
  }

  table.schedule th, table.schedule td {
    border: 1px solid #fff;
    padding: 1.25rem .625rem;
  }

  .busy_slot,
  .available_slot{
    background: #f1ebe7;
  }

  /* 灰色 不可點選 */
  .busy_slot {
    color: #888;
  }

  /* 黑色 可點選 */
  .available_slot a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
    display: block;
  }

  .available_slot:hover {
        background-color: var(--third_color);
  }

  .available_slot:hover a {
        text-decoration: none;
        color: #fff;
  }