@import "../common/var";

@include b(month-table) {
  font-size: 12px;
  margin: -1px;
  border-collapse: collapse;

  td {
    text-align: center;
    padding: 8px 0px;
    cursor: pointer;
    width: 80px;
    // & div {
    //   height: 48px;
    //   padding: 6px 0;
    //   box-sizing: border-box;
    // }
    &.today {
      div{
        position: relative;
        .cell::after {
          content: '';
          display: inline-block;
          height: 4px;
          width: 4px;
          border-radius: 50%;
          background-color: #3366FF;
          position: absolute;
          bottom: 8px;
          left: 50%;
          transform: translate(-50%,0); 
          // color: $--color-primary;
          // font-weight: bold;
        }
      }
      
      &.start-date .cell,
      &.end-date .cell {
        color: $--datepicker-font-color;
      }
    }

    &.disabled .cell {
      background-color: $--background-color-base;
      cursor: not-allowed;
      color: $--color-text-placeholder;
      &:hover {
        color: $--color-text-placeholder;
      }
    }

    .cell {
      width: 80px;
      height: 40px;
      display: block;
      line-height: 36px;
      color: $--datepicker-font-color;
      margin: 0 auto;
      border-radius: 4px;
      &:hover {
        color: $--datepicker-hover-font-color;
      }
    }

    &.in-range div {
      border-radius: 4px;
      background-color: $--datepicker-inrange-background-color;
      &:hover {
        background-color: $--datepicker-inrange-hover-background-color;
      }
    }
    &.start-date div,
    &.end-date div {
      color: $--datepicker-font-color;
      border: 1px solid #2E63FD;
    }

    &.start-date .cell,
    &.end-date .cell {
      color: $--datepicker-font-color;
      // background-color: $--datepicker-inrange-background-color;
    }

    // &.start-date div {
    //   border-top-left-radius: 24px;
    //   border-bottom-left-radius: 24px;
    // }

    // &.end-date div {
    //   border-top-right-radius: 24px;
    //   border-bottom-right-radius: 24px;
    // }

    &.current:not(.disabled) .cell {
      // color: $--datepicker-active-color;
      background-color: $--datepicker-inrange-hover-background-color;
      border: 1px solid #2E63FD;
    }
  }
}
