/* 禁用日期的背景顏色 */
  .disabled-date {
    /*background-color: #f8d7da !important;  淡紅色背景 */
    /*color: #721c24 !important;            深紅色文字 */
    pointer-events: none;                /* 禁止點擊 */
    cursor: not-allowed;                 /* 不可用游標 */
    text-decoration: line-through;
  }

   /* 可選日期的背景與文字顏色 */
    .enabled-date {
      background-color: #f1f9fe ;          /*背景顏色 */
      color:  #1E90FF ;                    /* 文字顏色 */
      /*text-shadow: 2px 2px 2px #D3D3D3;   文字陰影 */
      cursor: pointer;                     /* 可點擊游標 */
      font-weight:bold;
    }

    /* 可選日期的懸停效果 */
    .enabled-date:hover {
      background-color: #faf088 ; /* 懸停顏色 */
      text-decoration-line: underline;
    }

  .air-datepicker--content{margin:0;}
  .air-datepicker-cell{margin:0;}
  .air-datepicker--navigation{margin:0;}
  .air-datepicker-nav--action{margin:0;}
  .air-datepicker-nav--title{margin:0;}