
/* OpenClaw Badge */
.openclaw-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    margin-right: 1rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.openclaw-badge:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(102, 126, 234, 0.1);
}

.openclaw-badge i {
    font-size: 0.9rem;
}

/* Dark Mode Adjustment */
body.theme-dark .openclaw-badge {
    background: rgba(102, 126, 234, 0.2);
    color: #8fa5ff;
    border-color: rgba(102, 126, 234, 0.3);
}

body.theme-dark .openclaw-badge:hover {
    background: rgba(102, 126, 234, 0.3);
    color: #a8baff;
}
