/* KidzHeaven Porto-Blue Chat Widget */

/* Chat Bubble */
#kidzheaven-chat-bubble {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #007bff;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999999;
}

/* Chat Window */
#kidzheaven-chat-window {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 999999;
}

.kidzheaven-hidden {
    display: none !important;
}

/* Header */
.kidzheaven-chat-header {
    background: #007bff;
    color: #fff;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Messages */
#kidzheaven-chat-messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
}

/* New Conversation Button */
#kidzheaven-new-chat {
    width: 100%;
    padding: 10px;
    background: #f5f5f5;
    border: none;
    border-top: 1px solid #ddd;
    cursor: pointer;
}

#kidzheaven-new-chat:hover {
    background: #e9e9e9;
}

/* Footer */
.kidzheaven-chat-footer {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

#kidzheaven-chat-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#kidzheaven-chat-send {
    margin-left: 8px;
    padding: 8px 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}