
.dropdown-item.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
    /* Optional: Change background color for disabled items */
    background-color: #f5f5f5;
}

.dropdown .dropdown-menu.show {
    display: block;
    padding: 0;
    /* width: 100%; */
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 20px 0px #D0D1D780;
    border-radius: 8px;
    height: fit-content;
    max-height: 300px;
    overflow: auto;
  }
  
#home-city-dropdown-list, #home-speciality-dropdown-list {
    transform: translate3d(0px, 43px, 0px) !important;
    width: 100% !important;
    z-index: 1;
}

  .dropdown .dropdown-menu.show li{
    overflow: hidden;
  }
  
  .dropdown .dropdown-menu.show li:not(li:last-child){
    overflow: hidden;
    border-bottom: 2px solid #F5F6F8;
  }
  
  .dropdown .dropdown-menu.show li:first-child{
    border-radius: 8px 8px 0px 0px;
  }
  
  .dropdown .dropdown-menu.show li:last-child{
    border-radius: 0px 0px 8px 8px;
  }
  
  .dropdown .dropdown-menu.show > .dropdown-item:focus, .dropdown-item:hover, .dropdown-item:active {
    color: #ffffff;
    background-color: var(--primary-color);
  }
  
  .dropdown .dropdown-menu.show > .dropdown-item > label {
    height: 32px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  
  .dropdown .dropdown-menu.show > .dropdown-item > label > input {
    appearance: none;
    border: 1px solid var(--primary-color);
    width: 14px;
    height: 14px;
    content: none;
    outline: none;
    margin: 0;
    border-radius: 4px;
    padding: unset;
  }
  
  .dropdown .dropdown-menu.show > .dropdown-item:hover > label > input {
    background-color: #ffffff;
  }
  
  .dropdown .dropdown-menu.show > .dropdown-item > label > input[type="radio"]:checked {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  }
  
  .dropdown .dropdown-menu.show > .dropdown-item > label span {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    color: var(--sub-heading-color);
  }
  
  .dropdown .dropdown-menu.show > .dropdown-item:hover span {
    color: #ffffff;
  }
  
  

@media screen and (max-width: 992px){
    main .main-header {
        padding: 20px;
    }
    .header-content {
        width: 80%;
    }
    .main-img img {
        width: 100%;
    }
    .header-form .input-svg input {
            padding: 10px 40px 10px 10px !important;
            box-shadow: unset !important;
    }
    
}

@media screen and (max-width: 768px){
    main .main-header{
        flex-direction: column-reverse;
        gap: 20px;
    }
    .patient-content{
        flex-direction: column !important;
    }
    .main-img {
        width: 100%;
        justify-content: center;
    }
    .main-img {
        width: 100%;
    }
}