/* ============ Calendar Css ============= */

.calendar-card {
  .fc {
    height: 450px;

    &#calendar-full {
      height: 600px;
    }

    table {
      border: none;
    }

    .fc-toolbar-title {
      font-size: 16px;
      font-weight: 500;
    }

    .fc-button {
      background: transparent;
      border: none;
      color: $gray;
      text-transform: capitalize;

      &:focus {
        @include box-shadow(none);
        color: $primary;
      }
    }

    th {
      text-align: left;
      border-bottom: 1px solid $black-10 !important;
      border-right: 0px;

      a {
        color: $gray;
        font-weight: 400;
      }
    }

    .fc-day {
      border-width: 4px;
      background: $white;

      &.fc-day-today {
        .fc-daygrid-day-frame {
          background: rgba($primary, 0.8);

          a {
            color: $white;
          }
        }
      }

      .fc-daygrid-day-frame {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        background: #f9f9f9;
        border-radius: 6px;
        // padding: 5px;

        a {
          color: $gray;
        }
      }
    }
  }

  .fc-theme-standard td,
  .fc-theme-standard th {
    border-color: transparent;
  }
}
