:root {
    font-family: Poppins, serif;

    --athena-xai-chat-primary-text-color: #4F4F69;
    --athena-xai-chat-alternate-text-color: #4F4F694D;
    --athena-xai-chat-primary-border-color: #E6E6F0;
    --athena-xai-chat-primary-background-color: #E6E6F0;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    display: none !important;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    display: none !important;
}

.athena-xai-chat__container {
    border-radius: 10px;
    border: 1px solid rgb(230, 230, 240);
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 39px 0 0 0;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.athena-xai-chat__message-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: thin;
    transition: 150ms ease-in;
    margin-bottom: 94px;
}

.athena-xai-header-description {
    font-family: Poppins, serif;
    font-weight: 600;
    font-style: Italic;
    font-size: clamp(14px, 1.5vw, 20px);
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #4F4F6980;
    margin: 0;
    padding: 0;
}

.athena-xai-header-title {
    font-family: Poppins, serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(12px, 2vw, 24px);
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;

    margin: 0;
    padding: 0 4px 0 0;

    background: linear-gradient(118.93deg, #623D7D 1.41%, #2763A5 80.75%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.athena-xai-bubble__question {
    padding: 14px 20px;
    border-radius: 16px;
    border: 1px solid #D9D9DF80;

    font-family: Poppins, serif;
    font-weight: 500;
    font-size: clamp(14px, 1.3vw, 18px);
    letter-spacing: 0;
    text-align: center;
    color: #4F4F69;
    cursor: pointer;
}

.athena-xai-bubble__question:hover {
    background: #F7F7FA;
    border: 1px solid #D9D9DF80;
    transition: 0.3s ease-in;
}

.athena-xai-bubble__question-outer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.athena-xai-bubble__question-inner-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto;
    padding: 0 130px;
}

.athena-xai-recent-chats {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 18px;
}

.athena-xai-recent-chats p {
    margin: 0;
    font-family: Poppins, serif;
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 20px);
    line-height: 100%;
    letter-spacing: 0;
    color: #4F4F6966;
}

@media(max-width: 1300px) {
    .athena-xai-chat__container {
        padding: 20px 10px;
    }

    .athena-xai-bubble__question-inner-container {
        padding: 0;
    }
}

/**
    Header
 */

.athena-xai-chat__header-container {
    background: #FFFFFF;
    margin-bottom: 39px;
    position: relative;
}

.athena-xai-chat__header-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.athena-xai-chat__header-info-container h2 {
    font-family: Poppins, serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(12px, 2vw, 24px);
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;

    margin: 0;
    padding: 0 4px 0 0;

    background: linear-gradient(89.6deg, rgb(122, 156, 253) -68.59%, rgb(236, 118, 181) 169.63%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.athena-xai-chat__header-info-container p {
    padding: 0;
    margin: 0;

    font-family: Poppins, serif;
    font-weight: 500;
    font-style: Italic;
    font-size: clamp(12px, 1.5vw, 20px);
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
}

.athena-xai-chat__header-info-bottom-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.athena-xai-chat__header-info-container p span {
    font-family: Poppins, serif;
    font-weight: 600;
    font-style: Italic;
    font-size: clamp(12px, 1.5vw, 20px);
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
}

.athena-xai-chat__header-info-container img {
    width: 41px;
    height: 44px;
    aspect-ratio: 41/44;
    object-fit: contain;
}

.athena-xai-chat__header-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.athena-xai-chat__header-button-container button {
    border: 0;
    outline: 0;
    margin: 0;
    padding: 0;
    background: none;
    display: grid;
    place-items: center;
    cursor: pointer;
}

@media(max-width: 768px) {
    .athena-xai-chat__header-container {
        margin-bottom: 20px;
    }
}

/**
    Message
 */

.athena-xai-chat__message-ai-container,
.athena-xai-chat__message-user-container {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    max-width: 1270px;
    width: 100%;
    margin: 0 auto 27px;
}

.athena-xai-chat__message-user-image-parent-container {
    margin-bottom: 8px !important;
}

.athena-xai-chat__message-user-container {
    justify-content: flex-end;
}

.athena-xai-chat__message-ai-container .athena-xai-chat__bubble-container,
.athena-xai-chat__message-user-container .athena-xai-chat__bubble-container {
    padding: 12px 20px;
    width: max-content;
    max-width: 40%;
    background: #F7F7FA;
    border-radius: 16px;
}

.athena-xai-chat__message-user-container .athena-xai-chat__avatar-gift-container img {
    min-width: 21px;
    min-height: 25px;
    aspect-ratio: 21/25;
    max-height: 25px;
    object-fit: contain;
    position: relative;
}

.athena-xai-chat__message-ai-container .athena-xai-chat__avatar-gift-container img {
    aspect-ratio: 28/31;
    max-height: 31px;
    object-fit: contain;
    position: relative;
    left: 3px;
}

.athena-xai-chat__bubble-message {
    font-size: clamp(10px, 1vw, 15px);
    color: #4F4F69;
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.athena-xai-chat__avatar-gift-container {
    background: #F7F7FA;
    min-width: 50px;
    min-height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.athena-xai-chat__product-message-container {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: 100%;
}

.athena-xai-chat__product-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.athena-xai-chat__product-main-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 15px;
}

.athena-xai-chat__product-image-container {
    position: relative;
}

.athena-xai-chat__product-image-container img {
    border: 1px solid #D9D9DF80;
    aspect-ratio: 280 / 335;
    width: 99%;
    height: auto;
    max-height: 335px;
    object-fit: contain;
}

.athena-xai-chat__product-name-container h3 {
    padding: 0;
    margin: 0;

    font-family: Poppins, serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0;
    color: #4F4F69;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    max-height: calc(1.4em * 4);
}

.athena-xai-chat__product-price-container span {
    font-family: Poppins, serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0;
    color: #4F4F69;
    opacity: 50%;
}

.athena-xai-chat__view-product-button {
    padding: 8.5px 17px;
    margin: 0;
    outline: 0;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    background: linear-gradient(to left, #3FCADD, #9431FA);
    color: #FFFFFF;
}

.athena-xai-chat__user-image {
    aspect-ratio: 160/160;
    width: 100%;
    max-height: 160px;
    min-width: 160px;
    min-height: 160px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid #E6E6F0;
}

.swiper-navigation-icon {
    display: none !important;
}

.swiper-button-prev,
.swiper-button-next {
    min-height: 44px !important;
    min-width: 44px !important;
    width: 44px !important;
    height: 44px !important;
    background: #FFFFFF;
    box-shadow: 0 0 10px 0 #0000001A;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: absolute;
    z-index: 50;
    cursor: pointer;
}

.swiper-button-prev {
    top: 30%;
    left: 28px !important;
}

.swiper-button-next {
    top: 30%;
    right: 28px !important;
}

.swiper-button-prev img,
.swiper-button-next img {
    width: 10px;
    height: 12px;
    object-fit: contain;
}

.swiper-button-next img {
    transform: rotate(180deg);
    position: relative;
    left: 1px;
}

.swiper-button-prev img {
    position: relative;
    left: -1px;
}

.athena-xai-chat__swiper-container {
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.swiper {
    max-width: 1488px;
    width: 100%;
    margin: 0 auto 30px;
    overflow: hidden;
}

.athena-xai-chat__message-user-image-container {
    border-radius: 16px;
    background: #F7F7FA;
    padding: 12px 20px;
}

.swiper-slide {
    cursor: pointer;
}

.find-visual-similar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    background: #F7F7FA;
    transition: bottom 0.2s ease, opacity 0.2s ease;
    padding: 10px 17px;
    text-align: center;
    border-radius: 15px;
    color: #A7A7b2;
    opacity: 0;
}

.find-visual-similar:hover {
    color: #000000;
    transition: 0.3s ease-in;
}

.swiper-slide:hover .find-visual-similar {
    bottom: 20px;
    opacity: 1;
}

.find-visual-similar-image {
    width: 19px !important;
    height: 13px !important;
    border: none !important;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .athena-xai-chat__message-ai-container .athena-xai-chat__bubble-container,
    .athena-xai-chat__message-user-container .athena-xai-chat__bubble-container {
        max-width: 100%;
    }

    .athena-xai-chat__message-ai-container,
    .athena-xai-chat__message-user-container {
        margin: 0 auto 17px;
    }
}

/**
    Search
 */

.athena-xai-chat__search-fixed-stack {
    position: fixed;
    bottom: 5px;
    left: 0;
    width: 100%;
    z-index: 999;
    box-sizing: border-box;
}

.athena-xai-chat__search-outer-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    padding: 20px 0;
    width: 100%;
}

.athena-xai-chat__search-input-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 44.15%;
    min-width: 0;
}

.athena-xai-chat__search-inner-container {
    display: flex;
    background: #F7F7FA;
    padding: 9px 16px;
    gap: 12px;
    border: 1px solid var(--athena-xai-chat-primary-border-color);
    border-radius: 89px;
    position: relative;
    width: 100%;
}

.athena-xai-chat__button-container,
.athena-xai-chat__button-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.athena-xai-chat__sparkle-search-container {
    max-height: 32px;
}

.athena-xai-chat__sparkle-search-container img {
    animation: sparklePulse 2.2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes sparklePulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
        filter: brightness(1);
    }
    50% {
        transform: scale(1.12);
        opacity: 1;
        filter: brightness(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 0.85;
        filter: brightness(1);
    }
}

.athena-xai-active-chat__button-container {
    position: absolute;
    top: 10px;
    right: 37px;
}

.athena-xai-chat__search-input-container {
    width: 100%;
}

.athena-xai-chat__search-input-container input {
    outline: 0;
    border: 0;
    background: none;
    height: 100%;
    font-size: 16px;
    padding: 0;
    margin: 0;
    width: calc(100% - 16px);
    appearance: none;
}

.athena-xai-chat__search-input-container input::placeholder {
    color: var(--athena-xai-chat-alternate-text-color);
    font-size: 16px;
}

.athena-xai-chat__button,
.athena-xai-chat-x__button {
    outline: 0;
    border: 0;
    background: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: grid;
    place-items: center;
}

.athena-xai-chat__voice-button-container label {
    position: relative;
    top: 1px;
}

.athena-xai-chat__button img {
    object-fit: contain;
    width: 27px;
    height: 27px;
    aspect-ratio: 27/27;
}

.athena-xai-refresh__button {
    appearance: none;
    outline: 0 !important;
    border: 0 !important;
    background: #F7F7FA;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.athena-xai-refresh__button img {
    object-fit: contain;
    width: 22px;
    height: 20px;
    aspect-ratio: 22/20;
}

.athena-xai-refresh__button:hover {
    animation: spin 0.6s ease-in-out forwards;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.athena-xai-chat__voice-button-container-independent img {
    cursor: pointer;
}

#athena-xai-chat__upload-button,
.athena-xai-chat__voice-button-container button,
.athena-xai-chat__voice-button-container-independent button,
.athena-xai-chat__voice-active-button-container button {
    display: none;
}

.athena-xai-chat__voice-active-button-container {
    position: relative;
    display: grid;
    place-items: center;
    top: 80px;
    left: 60px;
}

.athena-xai-chat__voice-active-button-container-independent.athena-xai-chat__voice-active-button-container {
    left: -35px;
}

.athena-xai-chat__voice-active-button-container label {
    position: absolute;
    min-width: 60px;
    min-height: 60px;
    background: linear-gradient(to left, #3FCADD, #9431FA);
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(147, 49, 250, 0.3);
    transition: transform 0.3s ease;
    z-index: 2;
    cursor: pointer;
}

@keyframes athena-voice-ripple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.athena-xai-chat__voice-active-button-container::before,
.athena-xai-chat__voice-active-button-container::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63, 202, 221, 0.6) 0%, rgba(148, 49, 250, 0.3) 70%);
    animation: athena-voice-ripple 2s infinite;
    z-index: 1;
}

.athena-xai-chat__voice-active-button-container::after {
    animation-delay: 1s;
}

.athena-xai-chat__voice-button-container--preparing,
.athena-xai-chat__voice-button-container-independent.athena-xai-chat__voice-button-container--preparing {
    cursor: wait;
    pointer-events: none;
}

/* Voice mic: preparing (mic permission / SpeechRecognition init) */
.athena-xai-chat__voice-preparing {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.athena-xai-chat__voice-button-container-independent .athena-xai-chat__voice-preparing {
    width: 32px;
    height: 32px;
}

.athena-xai-chat__voice-preparing-ring {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 2px solid rgba(148, 49, 250, 0.2);
    border-top-color: #9431FA;
    border-right-color: #3FCADD;
    animation: athena-voice-prepare-spin 0.7s linear infinite;
}

.athena-xai-chat__voice-button-container-independent .athena-xai-chat__voice-preparing-ring {
    width: 22px;
    height: 22px;
}

@keyframes athena-voice-prepare-spin {
    to {
        transform: rotate(360deg);
    }
}

.athena-xai-chat__voice-active-button-container-independent {
    top: 13px;
    right: 30px;
}

.athena-xai-chat__search-remove-image-container {
    position: relative;
    width: max-content;

    box-shadow: 0 0 10px 0 #0000001A;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 6px 17px;
}

.athena-xai-chat__search-remove-image-container .athena-xai-chat__pre-upload-display-image {
    aspect-ratio: 60/60;
    width: 100%;
    max-height: 60px;
    max-width: 60px;
    object-fit: contain;
    min-width: 60px;
    min-height: 60px;
}

.athena-xai-chat__search-remove-image-container div {
    position: absolute;
    display: grid;
    place-items: center;
    top: 7px;
    right: 7px;
    cursor: pointer;
    transition: 0.3s ease;
}

.athena-xai-chat__search-remove-image-container div:hover {
    transform: scale(1.4);
}

.athena-xai__upload-container {
    position: relative;
}

.athena-xai-upload-show-image {
    cursor: pointer;
}

.athena-xai__upload-select-container {
    display: flex;
    flex-direction: column;
    gap: 9px;
    position: absolute;
    top: -90px;
    right: 52px;
    box-shadow: 0 0 10px 0 #0000001A;
    padding: 9px;
    background: #FFFFFF;
    border-radius: 10px;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.athena-xai__upload-select-container.athena-xai-upload-show-container {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.athena-xai-chat__search-inner-container-focused {
    transition: all 0.4s ease;
    border: 1px solid #B4B4BE;
}

.athena-xai-tooltip-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.athena-xai-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);

    background: #4F4F69;
    color: #FFFFFF;

    font-family: Poppins, serif;
    font-size: 12px;
    font-weight: 400;

    padding: 6px 10px;
    border-radius: 6px;

    white-space: nowrap;

    opacity: 0;
    pointer-events: none;

    transition:
            opacity 0.2s ease,
            transform 0.2s ease;

    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}

.athena-xai-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #4F4F69 transparent transparent transparent;
}

.athena-xai-tooltip-wrapper:hover .athena-xai-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media(max-width: 1200px) {
    .athena-xai-chat__search-input-column {
        width: 80%;
    }

    .athena-xai-chat__search-fixed-stack {
        width: 93%;
        margin: 0 3.5%;
    }

    .athena-xai-chat__search-outer-container {
        width: 100%;
        margin: 0;
    }
}

@media(max-width: 768px) {
    .athena-xai-chat__search-input-column {
        width: 100%;
    }
}

/**
    Loader
 */

#loader {
    padding: 5px;
    border-radius: 5px;
    display: inline-flex;
}

#loader .ball {
    width: 10px;
    height: 10px;
    background: #262626;
    border-radius: 50%;
    animation: athena-loader-dot 1.2s ease-in-out infinite;
}

@keyframes athena-loader-dot {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.35;
    }
    50% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

#loader .ball:nth-child(2) {
    margin: 0 5px;
}

#loader .ball:nth-child(1) {
    animation-delay: 0.16s;
}

#loader .ball:nth-child(2) {
    animation-delay: 0.32s;
}

#loader .ball:nth-child(3) {
    animation-delay: 0.48s;
}

/**
    Independant Search
 */

.athena-xai-search__independent-chat-button {
    cursor: pointer;
}

.athena-xai-search__independent-icon-container {
    margin-right: 12px;
    flex-shrink: 0;
}

.athena-xai-search__independent-button-container {
    height: 48px;
    flex-shrink: 0;
}

.athena-xai-search__independent-input-container {
    flex: 1;
    min-width: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.athena-xai-search__independent-icon-container {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.athena-xai-search__independent-input-container input {
    width: 100%;
    font-family: Poppins, serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0;
    color: #4F4F69;
    margin-right: 8px;
}

.athena-xai-search__independent-chat-button,
.athena-xai-search__independent-input-container input {
    border: 0;
    outline: 0;
    background: none;
    appearance: none;
    margin: 0;
    padding: 0;
}

.athena-xai-search__independent-container {
    border: 1px solid #E6E6F0;
    border-radius: 100px;
    background: #F7F7FA;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 4px;

    width: 100%;
    max-width: 48px;

    margin: 0 auto;

    position: sticky;
    left: 50%;
    transform: translate3d(-50%,0,0);

    z-index: 999;

    bottom: -20px;
    opacity: 0;

    will-change: transform, opacity, max-width;

    backface-visibility: hidden;

    transition:
            bottom 0.6s ease,
            opacity 0.6s ease,
            max-width 0.8s ease,
            padding 0.8s ease;
}

.athena-xai-search__independent-container-visible {
    bottom: 22px;
    opacity: 1;
}

.athena-xai-search__independent-container-expanded {
    padding: 4px 4px 4px 18px;
    max-width: 500px;
}

.athena-xai-search__independent-container-expanded
.athena-xai-search__independent-input-container,
.athena-xai-search__independent-container-expanded
.athena-xai-search__independent-icon-container {
    opacity: 1;
}

.athena-xai-search__independent-container-focused {
    transition: all 0.4s ease;
    border: 1px solid #B4B4BE;
}

/**
    Initial
 */

.athena-xai-search__independent-chat-button {
    cursor: pointer;
}

.athena-xai-search__independent-icon-container {
    margin-right: 12px;
    flex-shrink: 0;
    opacity: 1;
}

.athena-xai-search__independent-button-container {
    height: 48px;
    flex-shrink: 0;
}

.athena-xai-search__independent-input-container {
    flex: 1;
    min-width: 0;
    opacity: 1;
}

.athena-xai-search__independent-input-container input {
    width: 100%;
    font-family: Poppins, serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0;
    color: #4F4F69;
    margin-right: 8px;
    border: 0;
    outline: 0;
    background: none;
    appearance: none;
    padding: 0;
}

.athena-xai-search__independent-chat-button {
    border: 0;
    outline: 0;
    background: none;
    appearance: none;
    margin: 0;
    padding: 0;
}

.athena-xai-search__independent-container {
    border: 1px solid #E6E6F0;
    border-radius: 100px;
    background: #F7F7FA;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 4px 4px 4px 18px;

    width: 100%;
    max-width: 500px;
    margin: 0 auto;

    opacity: 1;
}

.athena-xai-search__independent-container-focused {
    border: 1px solid #B4B4BE;
}
