/**
 * BotDolphin Frontend Styles
 *
 * @package BotDolphin
 * @since 1.0.0
 */

/* Chat Trigger Button */
.botdolphin-trigger {
    cursor: pointer;
    transition: all 0.2s ease;
}

.botdolphin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #0ea5e9 0%, #a855f7 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.botdolphin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -2px rgba(14, 165, 233, 0.3);
    color: #fff;
}

.botdolphin-btn:active {
    transform: translateY(0);
}

/* Widget Styles */
.botdolphin-widget-content {
    text-align: center;
}

.botdolphin-widget-content p {
    margin-bottom: 12px;
    color: #64748b;
}

.botdolphin-open-chat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #0ea5e9 0%, #a855f7 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.botdolphin-open-chat:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
