/* Floating Chat Button */
.floating-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(to right, #00ff88, #0055ff);
    color: white;
    padding: 18px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    transition: transform 0.3s ease-in-out;
}

.floating-chat:hover {
    transform: scale(1.1);
}

/* Chatbot Window */
.chat-window {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    background: #111;
    color: white;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    display: none;
    flex-direction: column;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Chatbot Header */
.chat-header {
    text-align: center;
    padding: 20px;
    background: #222;
    border-bottom: 2px solid #00ff88;
}

.chat-logo {
    width: 40px;
    margin-bottom: 10px;
}

.chat-header h2 {
    font-size: 20px;
    margin: 0;
    color: #00ff88;
}

.chat-header p {
    font-size: 14px;
    opacity: 0.8;
}

/* Chat Suggestions */
.chat-suggestions {
    display: flex;
    justify-content: space-around;
    background: #222;
    padding: 10px;
}

.suggestion-box {
    width: 30%;
    padding: 10px;
    background: #333;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.suggestion-box:hover {
    background: #00ff88;
    color: #111;
}

.suggestion-box i {
    font-size: 20px;
}

.suggestion-box p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* Chat Messages */
.chat-body {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    max-height: 350px;
}

/* Chat Input */
.chat-input {
    display: flex;
    padding: 10px;
    background: #222;
    border-top: 2px solid #00ff88;
}

.chat-input input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    background: #333;
    color: white;
    border-radius: 5px;
}

.chat-input button {
    padding: 10px;
    border: none;
    background: #00ff88;
    color: black;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 5px;
    transition: 0.3s;
}

.chat-input button:hover {
    background: #0055ff;
}
