/* Task #1527007: Dismiss X button for mobile sticky filing CTA bar.
   Owns: #sr-mobile-sticky-dismiss button styles only.
   Does NOT own: bar layout, visibility transitions (mobile-sticky-cta-1512272.css). */

#sr-mobile-sticky-dismiss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  border-radius: 8px;
  color: #6b7280;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

#sr-mobile-sticky-dismiss:active {
  background: #f3f4f6;
  color: #374151;
}

@media (min-width: 768px) {
  #sr-mobile-sticky-dismiss {
    display: none !important;
  }
}
