/* Color pallet: Plump Purple: #673AB7; Gainsboro: #E0E0E0; Cultured: F5F5F5; Eerie Black: #1F1F1F */
  
  /* schedule content*/
  
  .schedule-content {
    grid-area: content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .schedule-table {  
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .day-wrapper {
    border-radius: 10px 10px 0 0;
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 100%;
    box-shadow: 0 1px 5px 0 #e0e0e0;
    background-color: white;
  }
  
  .day-head {
    border-radius: 10px 10px 0 0;
    /*height: 60px;*/
    background-color: #898AA6;
    
    text-align: center;
    font-size: 1.2rem;
    color: black;
  }
  
  .day-cell {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #f5f5f5;
  }
  
  .ref-shift {
    border-radius: 10px;
    margin: 10px;
    color: black;
    background-color: #FFE6E6;
  }
  
  .mat-shift {
    border-radius: 10px;
    margin: 10px;
    color: black;
    background-color: #C6DCE4;
  }
  
  .bar-shift {
    border-radius: 10px;
    margin: 10px;
    color: black;
    background-color: #CEE5D0;
  }
  
  .bal-shift {
    border-radius: 10px;
    margin: 10px;
    color: black;
    background-color: #F5EDDC;
  }

  .aer-shift {
    border-radius: 10px;
    margin: 10px;
    color: black;
    background-color: #BED0F4;
  }

  .schedule-form {
    margin-top: 10px;
  }
  
  .schedule-form input:not([type="submit"]) {
    border: 1px solid #ccc;
    padding: 0.2rem 0.5rem;
    font: inherit;
    border-radius: 0.3rem;
  }
  
  .schedule-form input:not([type="submit"]):focus {
    outline: none;
    background-color: #e6d8f4;
    border-color: #673ab7;
  }
  
  .schedule-form .btn-submit-schedule-date {
    cursor: pointer;
    border: none;
    color: #e0e0e0;
    font-size: 1.2rem;
    background: #673ab7;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: 0.3s;
  }
  
  .schedule-form .btn-submit-schedule-date:hover {
    color: #673ab7;
    background: #e0e0e0;
  }
  
  /*to-top button*/
  
  #goTop-btn {
    margin: 10px;
    cursor: pointer;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    background: #673ab7;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: 0.3s;
  }
  
  #goTop-btn:hover {
    color: #673ab7;
    background: #e0e0e0;
  }
  
  /*Account page*/
  
  .account-view-content{
    grid-area: content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  /* footer section */
  .main-footer {
    border-radius: 10px 10px 0 0;
    grid-area: footer;
  }
  
  .social-feature-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    background-color: #141414;
    width: 100%;
    height: 100%;
    border-radius: 2px 2px 0 0;
  }
  
  .footer-text-container {
    height: 50px;
    margin: 5px;
    background-color: #673ab7;
    border-radius: 5px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 250ms;
    cursor: default;
  }
  
  .footer-text-container:hover {
    box-shadow: 0 2px 10px 0 #683ab7e5;
  }
  
  .footer-text-container p {
    margin: 3px;
    color: #1f1f1f;
  }
  
  /* mobile navigation */
  
  .mobile-nav {
    display: none;
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    background: #1f1f1f;
    width: 80%;
    height: 100vh;
  }
  
  .mobile-nav_items {
    width: 90%;
    height: 100%;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .mobile-nav_item {
    margin: 1rem 0;
  }
  
  .mobile-nav_item a {
    font-size: 1.5rem;
  }
  
  .open {
    display: block !important;
  }
  
  @media (min-width: 50rem) {
    /*schedule-page-media*/
  
    /*schedule-table*/
  
    .schedule-table {
        height: 1200px;
        flex-direction: row;
        justify-content: center;
        width: 800px;
    }
  
    .day-wrapper {
        width: 14%;
        overflow: hidden;
    }
  
    .mo-wrapper {
        border-radius: 10px 10px 0 0;       
    }
  
    .fr-wrapper {
        border-radius: 10px 10px 0 0;
    }
  
    .day-head {
        border-radius: 0 0 0 0;
    }
  
    /*to-top-button*/
    #goTop-btn {
        display: none;
    }
  
    /*navigation media*/
    .toggle-button {
        display: none;
    }
  
    .main-nav {
        display: flex;
    }
    /*footer media*/
    .social-feature-list {
        justify-content: center;
    }
  }
  
  /*Bigger screen media*/
  @media (min-width: 65rem) {
    .schedule-table {
        width: 100%;
    }
  }