.chat_options {
    position: relative;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* top: 362px; */
    /* height: 35vh; */
    /* font-weight: 500; */
    /* padding-top: 20px; */
    /* margin: 0px 23px; */
    gap: 12px;
    letter-spacing: 0.02em;
}

.chat_options{
    transition: opacity 0.1s, visibility 0.1s;
}

.chat_options :hover .description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 400px; /* Adjust this value based on the content's size */
    opacity: 1; /* Fade to fully opaque */
    visibility: visible; /* Make the element visible */
    transition: max-height 0.5s ease-in-out; /* Adjust the transition duration and timing function as needed */
}

ul{
    list-style: lower-alpha !important;
    padding-inline-start: 20px !important;
}


.preference-options{
    flex-direction: column;
}
  

.title{
    display: flex;
    /* font-size: 15px; */
    position: relative;
    padding-right: 5px;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    letter-spacing: 0.02em;
    /* height: 68px; */
    /* padding: 0px 58px 0px 0px; */
    line-height: 1.8em;
    top: 2px;
}

.rightArrowIconContainer{
    position: relative;
    top: 4px;
    left: 21px;
    z-index: -1;
}
  
.rightArrowIcon{
    width: 22px;
    height: 22px;
}
  
.viewDetailsIcon{
    width: 30px;
    height: 30px;
    /* align-content: center; */
    align-self: center;
}

.description {
    margin-top: 10px;
    font-size: 14px;
    /* color: #666; */
}

.description {
    max-height: 0; /* Initial state */
    opacity: 0; /* Initial state */
    visibility: hidden; /* Initial state */
    overflow: hidden; /* Hide overflowing content */
    transition: max-height 0.5s ease, opacity 0.5s ease, visibility 0.5s ease; /* Define transition properties */
}
