.splash-screen-suggestion-button {
    /* display: inline-flex; */
    padding: 8px;
    justify-content: flex-start;
    align-items: center;
    margin: 8px 0 0 0;
    opacity: 0.5;
    animation: dropIn 600ms ease-out forwards;

    width: auto !important;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--base-color, #057186);
    background: transparent;
    color: var(--base-color, #057186);
}

.splash-screen-suggestion-button .x-btn-inner,
.modern-suggestion-btn-in-chat .x-btn-inner {

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    color: var(--base-color, #057186);
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.3;
    max-height: calc(1.3em * 3);
    overflow: hidden;
    text-overflow: ellipsis;
}

.splash-screen-suggestion-button .x-btn-button-center,
.splash-screen-suggestion-button .x-btn-button {
    justify-content: flex-start;
    width: auto;
}

.splash-screen-suggestion-button:hover {
    background: var(--base-color, #057186);
    color: white;
}
.splash-screen-suggestion-button::after {
  content: "❯";
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* Show carrot on hover */
.splash-screen-suggestion-button:hover::after {
  opacity: 1;
}

.splash-screen-suggestion-button:hover .x-btn-inner {
    color: white;
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

@keyframes dropIn {
    from {
        opacity: 0.5;
        transform: translateY(var(--offset, -120px));
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.modern-suggestion-btn {
    width: 100%;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
}

.modern-suggestion-btn-in-chat {
    box-sizing: border-box;
    width: 99% !important;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--base-color, #057186);
    background: transparent;
    color: var(--base-color, #057186);
}

.modern-suggestion-btn-in-chat .x-btn-inner {
    color: var(--base-color, #057186);
}

.modern-suggestion-btn-in-chat:hover {
    background: var(--base-color, #057186);
    color: white;
}

.modern-suggestion-btn-in-chat:hover .x-btn-inner {
    color: white;
}

.splash-screen-suggestion-button-container {
    display: flex;
    gap: 8px;
    padding: 0 48px 8px 48px;
}

.splash-screen-suggestion-button-container-in-chat {
    display: flex;
}

.splash-screen-suggestion-button-container .x-box-inner,
.splash-screen-suggestion-button-container .x-box-target,
.splash-screen-suggestion-button-container-in-chat .x-box-inner,
.splash-screen-suggestion-button-container-in-chat .x-box-target {
    width: 100% !important;
}