#chatbot-app {
    height: 80vh; /* Make the chatbot fill 80% of the screen height */
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

#chat-window {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    margin-bottom: 60px;
}

#chat-form {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: bottom 0.3s ease-out;
    width: 50%;
}

#chat-title {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
    text-align: center;
}

#chat-form form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

#chat-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 16px;
    flex: 1;
    width: 70%; /* Input box less wide */
}

#chat-form button {
    padding: 10px 15px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
}

#chat-form button:hover {
    background-color: #0056b3;
}

#quick-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.quick-link {
    padding: 10px 15px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.quick-link:hover {
    background-color: #007bff;
    color: white;
}

#chat-form.initial {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

#chat-form.active {
    bottom: 0;
    transform: translateX(-50%);
    position: fixed;
}

#chat-window div {
    margin: 5px 0;
    max-width: 70%;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    word-wrap: break-word;
}

#chat-window div.user {
    align-self: flex-end;
    background-color: #000000;
}

#chat-window div.bot {
    align-self: flex-start;
    background-color: #6c757d;
}
