*{
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Google Sans', sans-serif;
}



body { 
    background: #100014; 
    /* background: linear-gradient(90deg,rgb(12, 0, 30), rgb(41, 0, 41)); */
    color: white; 
}
header{
    position: relative;
    z-index: 10;
    /* background-color: rosybrown; */
    width: 100vw;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px 15px;
}
.logo{
    filter: invert(1);
    width: 30px;
    height: 30px;
}
.abtbtn{
    width: 30px;
    height: 30px;
    filter: invert(1);
}
.backbtn{
    width: 30px;
    height: 30px;
    filter: invert(1);
    display: none;
}
header h1{
    font-family: "Pacifico", cursive;
    font-size: 28px;
    color: fuchsia;
}

header h1 span{
    color: white;
    font-family: 'google sans', sans-serif;
    font-weight: bold;
    font-size: 22px;
}

.chat-box { 
    height: calc(100vh - 140px); 
}
.wmsg{
    /* background-color: green; */
    display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
}
.wmsg h1{
    font-size: 24px;
}
pre { 
    background: #1e293b; 
    padding: 10px; 
    border-radius: 8px; 
    overflow-x: auto; 
    margin: 10px 0; 
}


.dot-pulse { 
    animation: pulse 1.5s infinite; 
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

#chat-history{
    scrollbar-width: thin; 
    scrollbar-color: #351e3b transparent; 
}

form{
    /* background-color: red; */
    padding-top: 5px;
}
.cn{
    align-self: center;
    font-size: 10px;
    color: #b3b3b3;
}
form button img{
    filter: invert(1);
}

form button, form input{
    background-color: rgba(255, 0, 212, 0.24);
    /* background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(55, 0, 255, 0.2)); */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 0, 255, 0);
    border-radius: 50px;
}
form input{
    padding: 2px 15px;
    font-size: 16px;
}
form button{
    /* border: 1px solid fuchsia; */
}
form input::placeholder{
    color: #e0e0e0;
    opacity: 0.7;
}
form input:focus{
    outline: none;
    border:1px solid fuchsia;
}
form input:focus + button{
    border:1px solid fuchsia;
}
.uidsp{
    justify-self: right;
    margin-right: 26px;
    background-color: rgb(56, 0, 56);
    padding: 6px 15px;
    border-radius: 12px;
}
.userlabel{
    display: none;
}
.ailabel{
    color: fuchsia;
    margin-bottom: 12px;
}
.aioutput{
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
}
.aioutput h1{
    font-size: 24px;
}
.aioutput h2{
    font-size: 22px;
}
.aioutput h3{
    font-size: 20px;
}
.aioutput pre{
    background-color: rgba(128, 0, 179, 0.096);
    padding: 15px;
}
pre code{
    color: white;
}
.aioutput li{
    margin-left: 20px;
    margin-bottom: 10px;
}
.aioutput a{
    color: #0051ff;
    text-decoration: underline;
}
.aioutput strong{
    color: rgb(255, 20, 255);
}
code { 
    font-family: monospace; 
    color: #b3b3b3;
    padding: 0px 4px;
    
}


.abtfull{
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 73px);
    /* background-color: rgba(16, 0, 20, 0.7); */
    background-color: #100014;
    backdrop-filter: blur(8px);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about{
    min-width: 350px;
    width: 80%;
    max-width: 800px;
    /* background-color: gray; */
    /* height: 50%; */
    padding: 20px;
}
.about h1{
    width: fit-content;
    padding: 10px 20px;
    border-radius: 20px;
    justify-self:end;
    text-align: right;
    background: #380038;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: bold;
}
.about p{
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.5;
    padding-left: 10px;
}
.about ul{
    margin-left: 20px;
    margin-bottom: 15px;
    list-style-type: disc;
    list-style-position: inside;
}
.about li{
    margin-bottom: 10px;
    font-style: italic;
    color: white;
    font-weight: bold;
}
.about a{
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.about hr{
    border: none;
    border-top: 1px solid fuchsia;
    margin: 20px 0;
}
.about strong{
    color: rgb(255, 255, 255);
}
.about h2{
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: -25px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.about h2 img{

    width: 15px;
    height: 15px;
    filter: invert(1);
    margin-left: 10px;
}
.about i{
    font-family: 'Courier New', Courier, monospace;
    color: #e0e0e0;
    font-size: 12px;
}
.about span{
    font-family: 'Google Sans', sans-serif;
    color: fuchsia;
    font-size: 12px;
    font-weight: bold;
}