.dropdown-menu-end {
    display: none;
}

.hero-parallax {
    background: radial-gradient(116.18% 118% at 50% 100%,
        rgba(33,33,33,0.15) 0%,
        rgba(37,37,37,0.2) 41.83%,
        rgba(26,26,26,0.25) 50%);
}

.hero-parallax-img {
    background-image: url('/static/img/SilvertineBanner.webp');
}

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 6px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #2aabf7;
  border-radius: 6px;
}


.white-navigation {
    --si-navbar-color: white !important;
    --si-navbar-brand-color: white !important;
    --si-navbar-stuck-bg: #ffffff00;

    --si-navbar-stuck-text-color: white !important;
    --si-nav-link-color: white !important;
    --si-navbar-toggler-color: white !important;

    box-shadow: none;

    color: white !important;
    background: transparent !important;

    position: fixed;
    z-index: 100;
    width: 100vw;
}



.navlink-white-text {
    color: white;
}

.chat-window {
    height: 90vh;
}

.chat-message-box {
    max-width: 800px;
}

.message-window-left {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
}

.message-window-right {
    border-top-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
}

.online-circle {
    width: 8px;
    height: 8px;
}


/* ... (CSS from previous example, no changes needed here) ... */
/* The following are used with the chat bot template ... */

#chat-log {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
/*{#background-color: #f9f9f9;#}*/
}

/* Message styling based on origin */
.message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
    display: flex; /* Use flexbox for alignment */
    align-items: flex-start; /* Align content to the top of the message bubble */
}

.message-content {
    flex-grow: 1;
}

.message.sender { /* Changed from .user */
{#background-color: #e0f7fa;}{#align-self: flex-end;}{#margin-left: auto;}{#flex-direction: row-reverse; /* For sender on right */}
}

.message.ai {
{#background-color: #ffe0b2;}{#align-self: flex-start;}{#margin-right: auto;}{#flex-direction: row; /* For AI on left */}
}

.message p {
    margin: 0;
}

.message strong {
    font-weight: bold;
    margin-right: 5px;
}

/* Space after sender name */
#chat-form {
    display: flex;
    padding: 15px;
}

#chat-form input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 16px;
}

#chat-form button {
{#padding: 10px 20px;}{#background-color: #007bff;}{#color: white;}{#border: none;}{#border-radius: 20px;}{#cursor: pointer;}{#font-size: 16px;}
}

.spinner {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 0.1em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}





/* Scroll down animation ============================================================================================ */

.scroll_down_container {
  position: relative;
  width: 24px;
  height: 24px;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 2px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #2aabf7;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}

/* END Scroll down animation ======================================================================================== */


