/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-window {
    width: 350px;
    height: 450px;
    background: #000;
    border: 1px solid #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 70px;
    right: 0;
    overflow: hidden;
    display: none;
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background: #fff;
    color: #000;
    padding: 15px;
    font-weight: bold;
    text-align: center;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.user-message {
    align-self: flex-end;
    background: #fff;
    color: #000;
    border-bottom-right-radius: 2px;
}

.bot-message {
    align-self: flex-start;
    background: #333;
    color: #fff;
    border-bottom-left-radius: 2px;
}

.chatbot-input {
    display: flex;
    padding: 10px;
    background: #333;
    border-top: 1px solid #555;
}

.chatbot-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #555;
    background: #000;
    color: #fff;
    outline: none;
}

.chatbot-input button {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 15px;
    margin-left: 5px;
    cursor: pointer;
    font-weight: bold;
}

.admin-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}