.custom-week-selector {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 10px;
    border-radius: 6px;
    background: #fff;
    font-family: Arial, sans-serif;
  }
  .custom-week-selector .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    font-weight: bold;
  }
  .custom-week-selector table.calendar {
    table-layout: fixed;
    width: 100%;
  }
  .custom-week-selector table.calendar th,
  .custom-week-selector table.calendar td {
    width: 14.28%;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #eee;
  }

  .custom-week-selector td.other-month {
    color: #aaa;
  }
  .custom-week-selector td.selected {
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
  }
  .custom-week-selector td:hover {
    background-color: #f0f0f0;
  }
  .custom-week-selector td.hovered {
    background-color: rgb(97, 173, 255);
    color: white;
    cursor: pointer;
  }

  .custom-week-selector td.hovered.selected {
    background-color: #007bff;
  }

  .custom-week-selector td.selected.other-month {
    color: lightgray;
  }

  

  .custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.custom-modal {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
    margin-bottom: auto;
    margin-top: 10px;
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.custom-modal-body {
    padding: 15px 0;
}

.custom-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 10px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.ml-2 {
    margin-left: 8px;
}