/* Activity and Editor-related CSS styles */

.editor-collapsed {
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 6px;
    padding: 6px 10px;
    background-color: var(--mud-palette-surface);
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.editor-collapsed:hover {
    background-color: var(--mud-palette-background-grey);
}

@keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 20px 5px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}