#chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #7ADD00;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
}

#chatbot-container.active {
    transform: scale(1);
}

#chatbot-header {
    background: #7ADD00;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-header button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

#chatbot-messages {
    height: 350px;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.chatbot-message {
    padding: 8px;
    border-radius: 8px;
    max-width: 80%;
    word-wrap: break-word;
}

.chatbot-message.user {
    align-self: flex-end;
    background: #7ADD00;
    color: white;
}

.chatbot-message.bot {
    align-self: flex-start;
    /* background: #eee; */
    color: black;
}

#chatbot-input {
    border: none;
    padding: 10px;
    width: 100%;
    outline: none;
    border-top: 1px solid #ddd;
}

#chatbot-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #7ADD00;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Osigurava da se prikaže iznad svih elemenata */
}
