/**
 * Inkora Live Block - Editor Styles
 */

.inkora-live-preview {
    transition: all 0.3s ease;
}

.inkora-live-preview .inkora-live-badge {
    display: inline-block;
    animation: editor-pulse 1.5s infinite;
}

@keyframes editor-pulse {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.8; transform: scale(1); }
}

@keyframes highlight {
    0% { background-color: rgba(251, 132, 19, 0.1); }
    100% { background-color: transparent; }
}

.inkora-live-preview .inkora-live-post {
    transition: background-color 0.3s ease;
}

/* Category selector styling */
.components-select-control__input[multiple] {
    height: auto;
    min-height: 100px;
    padding: 8px;
}

.components-select-control__input[multiple] option {
    padding: 4px 8px;
}

/* Live indicator in editor */
.inkora-live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: blink 1s infinite;
    background-color: #2398bc;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}