/* Lymio Integration Styles for Palleon */
button#lymio-remove-background.lymio-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.lymio-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

/* For dark mode consistency if Palleon uses dark themes */
body.dark-theme .lymio-progress-bar {
    background: rgba(255, 255, 255, 0.1);
}

#lymio-progress-inner {
    height: 100%;
    background: linear-gradient(90deg, #6b21a8, #c026d3);
    width: 0%;
    transition: width 0.3s ease;
}