html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}

body {
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,22,1) 35%, rgba(0,17,38,1) 100%);
    background-size: cover;
    font-family: "Roboto", sans-serif;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
}

.top-left-image {
    position: absolute;
    top: 10px;
    left: 10px;
}

.top-left-image img {
    height: 64px; /* Adjust as needed */
    width: auto;
    object-fit: contain;
}

.chat-app-container {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    align-items: center;
    height: 100%;
    width: 100%;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.chat-app-container .heading{
    color: white;
    font-size: 50px;
}

.chat-app-container form {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 75%;
    height: 50px;
}

.chat-app-container form .form-container {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgb(0 5 67 / 46%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    justify-content: space-between;
}
label {
    color: white;
    margin: 5px;
}
.login-form {
    height: 100px;
    padding: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-form-submit {
    display: flex; align-items: center;
}
.response-container {
    height: 55%;
    width: 75%;
    border-radius: 10px;
    overflow-y: auto;
    margin-top: 10px;
    box-shadow: 0 8px 32px 0 rgb(0 5 67 / 46%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    color: white;
}

.chat-app-container form .form-container:focus-visible,
.chat-app-container form .form-container:focus-within,
.chat-app-container form .form-container:active,
.chat-app-container form .form-container:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 4, 67, 0.675);
}

.form-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between elements */

}
.dropdown {
    font-size: 1rem;
    border-radius: 4px;
    background: transparent;
    border: none;
    padding: 5px;
    margin-left: 10px;
    color: white;
    outline: none !important;
}
.query-input {
    flex-grow: 1;
}

input#query-input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 5px 20px;
    color: white;
    outline: none !important;
}

.input_query_text {
    font-weight: 600;
}

input#query-input:-webkit-autofill {
    background: transparent !important;
    border: none;
    padding: 5px 20px;
    color: white !important;
    outline: none !important;
}

.submit-button {
    margin: 10px;
    background: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit-button img {
    width: 25px;
    height: 25px;
}

.input-text-container {
    display: flex;
    gap: 15px;
    position: sticky;
    align-items: center;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgb(37, 37, 37);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a;
}