#chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #13547a;
    color: white;
    padding: 12px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
}

#chat-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    overflow: hidden;
    font-family: sans-serif;
    z-index: 1000;
}

.chat-header {
    background-color: #6c63ff;
    color: white;
    padding: 15px;
    font-size: 16px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 18px;
}

.chat-body {
    background-color: #f9f9f9;
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.bot-msg, .user-msg {
    background-color: #e5e5ea;
    color: black;
    padding: 8px 12px;
    border-radius: 20px;
    margin: 5px 0;
    max-width: 80%;
    font-size: 14px;
}

.bot-msg {
    align-self: flex-start;
    background-color: #6c63ff;
    color: white;
}

.user-msg {
    align-self: flex-end;
    background-color: #f1f0f0;
}

.question {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 18px;
    margin: 6px 0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.question:hover {
    background-color: #f0f0f0;
}

.chat-footer {
    padding: 10px;
    border-top: 1px solid #ccc;
    text-align: center;
}

.chat-footer input {
    width: 90%;
    padding: 8px;
    border-radius: 20px;
    border: 1px solid #ccc;
}
