
.llm-search-answer{
	padding-bottom: 20px;
}
.llm-search-sources{
	padding-bottom: 20px;
}
.llm-search-form {
  position: relative;
  background: black; /* or any background */
  z-index: 1;
}

.llm-search-form::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* Border thickness */
  border-radius: 0px;
  background: linear-gradient(
    90deg,
    black 0%,
    #DFC5FB 25%,
    #0074FF 50%,
    #DFC5FB 75%,
    black 100%
  );
  background-size: 200% 200%;
  animation: border-move 6s linear infinite;
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  box-sizing: border-box;
  z-index: -1;
}

@keyframes border-move {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}
.llm-search-container {	
position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: auto;
	max-height: 75vh;
    z-index: 999;
    padding: 43px;
    background: #0000008A;
    backdrop-filter: blur(19.799999237060547px);
	opacity:0;
}
.llm-search-loading{
	color: #fff;
}
.welcomeSection h4{
	text-align: center;
	font-family: Manrope;
	font-weight: 300;
	font-size: 40px;
	color: #fff;
}
.llm-search-loading img{
	width:30px;
	height:30px;
}
.modalHeader {
    display: flex;
    justify-content: space-between;
}
#llm-search-input {
    background: transparent;
    border: 0;
    padding: 30px 80px 30px 30px;
    color: #fff;
    min-height: 80px;
	max-height: 80px;
    overflow-y: auto; /* allow scrolling */
    scrollbar-width: none; /* Firefox */
	resize: none;
	
}

#llm-search-input::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

#llm-search-input::placeholder{
    color: #fff;
}
.llmresultsclearbtn{
	cursor: pointer;
	font-family: Manrope;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	background: #00000042;
	backdrop-filter: blur(19.799999237060547px);
	display: flex;
	gap: 12px;
	padding: 8px 16px;
	position: absolute;
	top: 0;
	right: 0;
	width: fit-content;
	color: #fff
}
.llmresultsclearbtn img{
	width: 13px;
}

#llm-search-input:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}

#llm-search-button {
    position: absolute;
    background-color: #ffffff1a;
    border: 0;
    top: calc(50% - 25px);
    right: 18px;
    cursor: pointer;
    border-radius: 0;
    padding: 15px 15px;
    display: flex
;
    justify-content: center;
    align-items: center;
}
#llm-search-button img{
    width: 20px;
    height: auto;
}
.llm-search-answer p{
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}

.llm-search-answer h3{
    color:#2ACAFD;
    font-size:30px;
    font-weight: 500;
    line-height: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;    
}
.llm-search-results {
    top: 0;
    margin-bottom: 30px;
    max-height: 63vh;
    overflow: auto;
    z-index: 1;
}

/* .llm-search-results::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(
        90deg,
        black 0%,
        #DFC5FB 25%,
        #0074FF 50%,
        #DFC5FB 75%,
        black 100%
    );
    background-size: 200% 200%;
    animation: border-wave 6s ease-in-out infinite;
    box-sizing: border-box;
    z-index: -1;
    bottom: 28px;
    top: 500px;
} */

@keyframes border-wave {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 55%; } /* small vertical offset for wave effect */
    100% { background-position: 0% 50%; }
}



.llm-search-sources h4{
    font-size: 22px;
    line-height: 100%;
    font-weight: 500;
    color:#EAEAEA;
	margin-bottom: 25px;

}
.llm-search-sources ul li a{
    font-size: 16px;
    line-height: 100%;
    color:#00EAFF;
    position: relative;
    text-decoration: underline;
}
.llm-search-sources ul{
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.llm-search-sources ul li a:hover::after{
    width: 100%;
}

img.pageLinkIcon{
    margin-bottom: -3px;
    width: 17px;
    margin-left: 5px;
}

@media(max-width:767px){
	.welcomeSection h4{
        font-size: 24px;
        line-height: 36px;
        text-align: left;
	}
	.llm-search-container{
		padding:100px 10px 40px 10px;
	}
	#llm-search-input{
		padding: 25px 80px 20px 20px;
	}
}