.add-task-custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 48px;
    border: none;
    margin-bottom: 28px;
  }
  
  .select-selected {
    position: relative;
    background-color: #fff;
    padding: 10px 21px;
    font-size: 20px;
    cursor: pointer;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 6px;
    z-index: 2;
  }
  
  .select-items {
    position: absolute;
    top: 35px;
    padding-top: 12px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    width: 100%;
    display: none;
    z-index: 1;
    overflow: auto;
    max-height: 225px;
  }
  
  .select-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
  }
  
  .select-option:hover {
    background-color: #f0f0f0;
    border-radius: 12px;
  }
  
  .add-task-custom-select::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    z-index: 2;
  }
  
  .add-task-custom-select.open::after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  .add-task-custom-select.open .select-items {
    display: block;
  }
  
  .select-option.active {
    background-color: rgb(42, 54, 71);
    color: white;
    border-radius: 12px;
  }
  