body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #8360c3, #2ebf91);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.chat-container {
    width: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-header {
    background: #2ebf91;
    color: white;
    padding: 10px;
    text-align: center;
}

.chat-box {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.chat-input {
    display: flex;
    padding: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

.chat-input button {
    padding: 10px 20px;
    background: #2ebf91;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.chat-input button:hover {
    background: #229d76;
}

.message {
    padding: 5px 10px;
    margin: 5px 0;
    border-radius: 5px;
}

.message.user {
    background: #2ebf91;
    color: white;
    align-self: flex-end;
}

.message.bot {
    background: #eee;
    align-self: flex-start;
}
.intro-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.intro-container img{
    width: 50%;
    min-width: 300px;
}
#loader{
    font-size: 25px;
    text-align: center;
}