/* Field Ops button — hazard stripe (matches Android tester) */

.rcs-field-ops-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: stretch;
  border: 2px solid #facc15;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: transparent;
  font: inherit;
  min-height: 48px;
  min-width: 88px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.rcs-field-ops-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

.rcs-field-ops-btn:active {
  transform: translateY(0);
}

.rcs-field-ops-btn__stripe {
  width: 16px;
  flex-shrink: 0;
  background: repeating-linear-gradient(
    -45deg,
    #facc15,
    #facc15 6px,
    #0a0a0a 6px,
    #0a0a0a 12px
  );
}

.rcs-field-ops-btn__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: #0a0a0a;
  color: #facc15;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.rcs-field-ops-btn--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
