.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: none;
    z-index: 1000;
    overflow: hidden;
}

.chatbot-header {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-close {
    color: white;
    cursor: pointer;
    font-size: 20px;
}

.chatbot-messages {
    height: 300px;
    overflow-y: auto;
    padding: 15px;
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
}

.bot-message {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 10px;
    margin-right: auto;
}

.user-message {
    background: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin-left: auto;
}

.chatbot-input {
    padding: 15px;
    border-top: 1px solid #eee;
}

.chatbot-input input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.chatbot-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.chatbot-button {
    flex: 1;
    min-width: 140px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.chatbot-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.chatbot-image {
    width: 200px;
    margin: 10px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.chatbot-image img {
    width: 100%;
    height: auto;
    display: block;
}
