body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    letter-spacing: 0.02em;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    color: #1F2937;
}

.user-info {
    display: grid;
    grid-template-columns: 9fr 1fr;
    align-items: center;
    background-color: #F3F4F6;
    padding: 0.5em 0.6rem;
    border-radius: 0.5rem;
    gap: 0.5em;
    margin-left: 10px;
    margin-right: 15px;
    /* width: 300px; */
    /* justify-content: flex-start; */
}

#userSection{
    display: none;
}

.profile-info-sidebar{
    display: flex;
    gap: 10px;
    align-items: center;
    text-align: left;
}

#userName {
    font-size: 0.875rem;
    color: #4B5563;
    /* margin-right: 0.5rem; */
    text-align: left;
}
.user-avatar {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    object-fit: cover;
}


.preference-options{
    /* width: 90vw; */
    text-align: center;
    display: flex;
    justify-content: space-between;
    text-align: left;
    position: relative;
    /* height: 68px; */
    padding: 19px 58px 19px 39px;
    box-sizing: border-box;
    margin-bottom: 7px;
    /* margin-left: 15px; */
    /* margin-right: 15px; */
    border-radius: 28px;
    border: 1px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(90deg, rgba(255, 255, 255, 1) 15%, rgba(10, 102, 195, 1));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    z-index: 0;
    font-weight: 500;
    /* gap: 5px; */
  }
  
  .preference-options:hover{
    background: linear-gradient(109deg, rgba(10, 102, 195, 0.30) 40.85%, rgba(10, 102, 195, 0.10) 104.17%);
    cursor: pointer;
  }
  
  .preference-options::before{
    content: "";
    position: absolute;
    top: -2px; /* Adjust these values as needed */
    left: -4px;
    right: -4px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(150deg, rgb(10 120 195 / 10%), rgb(10 120 195 / 1%));
    /* background-image: linear-gradient(109deg, rgba(10, 102, 195, 0.10) 40.85%, rgba(10, 102, 195, 1) 104.17%); */
    border-radius: 29px;
  }
  
  @media (max-width: 768px) {
    .tooltiptext {
      position: fixed;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      max-width: 300px;
      margin-left: 0;
    }
}

.tooltip {
    position: relative;
    display: grid;
    cursor: help;
}


.tooltip .tooltiptext {
    visibility: hidden;
    width: fit-content;
    min-width: 200px;
    max-width: 350px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1000;
    /* left: 50%; */
    /* margin-left: -60px; */ /* Use half of the width to center the tooltip */
    opacity: 0;
    transition: opacity 0.3s;
    right: calc(100% + 10px); /* Keep the tooltip to the left of the icon */
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%; /* Position to the right of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #555;
}


.options.tooltip .tooltiptext {
    bottom: 125%;
    min-width: 350px;
    left: 30%;
}

.options.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent transparent;
}

/* Responsive tooltip for smaller screens */
@media (max-width: 600px) {
    .tooltip .tooltiptext {
        /* width: 200px; */ /* Allow the tooltip to take up as much width as it needs */
        /* white-space: break-spaces; */ /* Allow the tooltip text to wrap to multiple lines */
        margin-left: -130px;
        margin-bottom: -20px;
    }

    .options.tooltip .tooltiptext {
        width: 200px; /* Allow the tooltip to take up as much width as it needs */
        white-space: break-spaces; /* Allow the tooltip text to wrap to multiple lines */
        margin-left: 50px; /* No need to center the tooltip */
    }
}

.groupTitleDelete{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px 0px;
}

/* Tab Navigation Styles */
.tab-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem;
    margin: 0 -0.5rem;
    background: var(--background-color);
    border-bottom: 1px solid var(--border-color);
}

.tab-button {
    flex: 1 1 calc(50% - 0.5rem);
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-align: center;
    box-sizing: border-box;
}

.tab-button:hover {
    background: var(--hover-color);
}

.tab-button.active {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .tab-navigation {
        gap: 0.25rem;
        padding: 0.25rem;
    }
    
    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .tab-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}