/* ============================================
   receivings.css — 자재 입고 전용 스타일 (WEB-16)
   원본: mia material-receiving.html
   CSS 접두사: rcv- (충돌 방지 — Propshaft가 모든 CSS 동시 로드)
   ============================================ */

/* ─── 전체 레이아웃 (3열: 필터 + 테이블 + 상세) ─── */
.receivings-layout {
  display: flex;
  height: 100%;
  overflow: hidden;
}

/* main 스크롤 방지 — 이 레이아웃이 있을 때만 적용 */
main:has(.receivings-layout) {
  overflow: hidden !important;
}

/* ─── 좌측: 필터 패널 (240px) ─── */
.rcv-filter-panel {
  width: 240px;
  background: white;
  border-right: 1px solid var(--tint);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow-y: auto;
}

.rcv-filter-header {
  padding: 16px;
  border-bottom: 1px solid var(--tint);
}

.rcv-filter-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 필터 그룹 — 각 필터 섹션 간격 */
.rcv-filter-group {
  margin-bottom: 16px;
}

.rcv-filter-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--tertiary);
  margin-bottom: 6px;
}

/* 상태 토글 — 2x2 그리드 */
.rcv-status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.rcv-status-toggle {
  padding: 6px 0;
  font-size: 0.6875rem;
  font-weight: 600;
  border: 1px solid var(--tint);
  border-radius: 6px;
  background: white;
  color: var(--tertiary);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}

.rcv-status-toggle.active {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.rcv-status-toggle:hover {
  border-color: var(--secondary);
}

/* 기간 칩 — 가로 나열 */
.rcv-date-chips {
  display: flex;
  gap: 4px;
}

.rcv-date-chip {
  flex: 1;
  padding: 5px 0;
  font-size: 0.6875rem;
  font-weight: 600;
  border: 1px solid var(--tint);
  border-radius: 6px;
  background: white;
  color: var(--tertiary);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}

.rcv-date-chip.active {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.rcv-date-chip:hover {
  border-color: var(--secondary);
}

/* date picker — 시작일/종료일 입력 */
.rcv-date-range {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}

.rcv-date-input {
  flex: 1;
  min-width: 0;
  padding: 4px 6px;
  font-size: 0.6875rem;
  border: 1px solid var(--tint);
  border-radius: 6px;
  color: var(--brand);
  background: white;
  font-family: inherit;
  outline: none;
}

.rcv-date-input:focus {
  border-color: var(--secondary);
}

.rcv-date-separator {
  font-size: 0.75rem;
  color: var(--light);
  flex-shrink: 0;
}

/* 공급처 검색 input — select 위 필터 */
.rcv-supplier-search {
  width: 100%;
  padding: 5px 8px;
  font-size: 0.6875rem;
  border: 1px solid var(--tint);
  border-radius: 6px;
  color: var(--brand);
  background: white;
  font-family: inherit;
  outline: none;
  margin-bottom: 4px;
}

.rcv-supplier-search:focus {
  border-color: var(--secondary);
}

.rcv-supplier-search::placeholder {
  color: var(--light);
}

/* 공급처 select */
.rcv-supplier-select {
  width: 100%;
  padding: 6px 8px;
  font-size: 0.75rem;
  border: 1px solid var(--tint);
  border-radius: 6px;
  color: var(--brand);
  background: white;
  font-family: inherit;
  outline: none;
}

.rcv-supplier-select:focus {
  border-color: var(--secondary);
}

/* 공급처 뱃지 — 다중 선택 표시 */
.rcv-supplier-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.rcv-supplier-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 4px;
  font-size: 0.625rem;
  color: #1E40AF;
}

.rcv-supplier-badge-name {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rcv-supplier-badge-remove {
  border: none;
  background: none;
  color: #1E40AF;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  font-family: inherit;
  opacity: 0.6;
}

.rcv-supplier-badge-remove:hover {
  opacity: 1;
}

/* 자재 유형 토글 — flex wrap */
.rcv-type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.rcv-type-toggle {
  padding: 4px 10px;
  font-size: 0.625rem;
  font-weight: 600;
  border: 1px solid var(--tint);
  border-radius: 20px;
  background: white;
  color: var(--tertiary);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}

.rcv-type-toggle.active {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.rcv-type-toggle:hover {
  border-color: var(--secondary);
}

/* 필터 요약 — 하단 고정 */
.rcv-filter-summary {
  padding: 16px;
  margin-top: auto;
  border-top: 1px solid var(--tint);
}

.rcv-filter-summary-label {
  font-size: 0.6875rem;
  color: var(--light);
  margin-bottom: 4px;
}

.rcv-filter-summary-count {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand);
}

.rcv-filter-summary-desc {
  font-size: 0.75rem;
  color: var(--tertiary);
}

/* 초기화 버튼 — 필터 요약 하단 */
.rcv-btn-reset {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  margin-top: 10px;
  padding: 6px 0;
  border: 1px solid var(--tint);
  border-radius: 6px;
  background: white;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--tertiary);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}

.rcv-btn-reset:hover {
  border-color: var(--secondary);
  color: var(--brand);
}

/* ─── 중앙: 테이블 영역 ─── */
.rcv-table-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--background);
}

/* 툴바 */
.rcv-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: white;
  border-bottom: 1px solid var(--tint);
}

.rcv-toolbar-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rcv-toolbar-actions {
  margin-left: auto;
  display: flex;
  gap: 6px;
  align-items: center;
}

/* 검색 입력 */
.rcv-search-input {
  width: 200px;
  border: 1px solid var(--tint);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  color: var(--brand);
  outline: none;
  font-family: inherit;
}

.rcv-search-input:focus {
  border-color: var(--secondary);
}

/* 버튼 — 아웃라인 */
.rcv-btn-outline {
  padding: 5px 12px;
  border: 1px solid var(--tint);
  border-radius: 6px;
  background: white;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--tertiary);
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s;
}

.rcv-btn-outline:hover {
  border-color: var(--secondary);
  color: var(--brand);
}

/* 버튼 — 프라이머리 */
.rcv-btn-primary {
  padding: 5px 14px;
  border: none;
  border-radius: 6px;
  background: var(--brand);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s;
}

.rcv-btn-primary:hover {
  opacity: 0.9;
}

/* 상태 요약 카드 — 4열 */
.rcv-summary-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px 16px;
  background: white;
  border-bottom: 1px solid var(--tint);
}

.rcv-summary-card {
  padding: 10px 12px;
  border-radius: 8px;
  text-align: center;
}

.rcv-card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.rcv-card-value {
  font-size: 1.25rem;
  font-weight: 700;
}

.rcv-card-scheduled {
  background: rgba(59, 130, 246, 0.08);
  color: #1E40AF;
}

.rcv-card-inspect {
  background: rgba(245, 158, 11, 0.08);
  color: #B45309;
}

.rcv-card-done {
  background: rgba(34, 197, 94, 0.08);
  color: #15803D;
}

.rcv-card-return {
  background: rgba(239, 68, 68, 0.08);
  color: #DC2626;
}

/* 테이블 래퍼 */
.rcv-table-wrapper {
  flex: 1;
  overflow-y: auto;
}

/* 데이터 테이블 */
.rcv-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.rcv-data-table thead {
  background: var(--background);
  position: sticky;
  top: 0;
  z-index: 1;
}

.rcv-data-table th {
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  color: var(--tertiary);
  font-size: 0.75rem;
  border-bottom: 1px solid var(--tint);
}

.rcv-th-check {
  width: 32px;
  text-align: center;
}

.rcv-data-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--tint);
  color: var(--brand);
}

.rcv-data-table tbody tr {
  transition: background 0.1s;
}

.rcv-data-table tbody tr:hover {
  background: var(--bg-light);
  cursor: pointer;
}

.rcv-data-table tbody tr.rcv-row-selected {
  background: rgba(59, 130, 246, 0.05);
}

/* 상태 뱃지 */
.rcv-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
}

.rcv-badge-scheduled {
  background: rgba(59, 130, 246, 0.1);
  color: #1E40AF;
}

.rcv-badge-inspect {
  background: rgba(245, 158, 11, 0.1);
  color: #B45309;
}

.rcv-badge-done {
  background: rgba(34, 197, 94, 0.1);
  color: #15803D;
}

.rcv-badge-return {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
}

/* 빈 상태 */
.rcv-empty-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rcv-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--light);
}

.rcv-empty i {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
  opacity: 0.3;
}

.rcv-empty-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.rcv-empty-desc {
  font-size: 0.8125rem;
}

.rcv-empty-hint {
  font-size: 0.75rem;
  margin-top: 12px;
  color: var(--tertiary);
}

/* 하단 일괄 액션 바 */
.rcv-bulk-bar {
  display: flex;
  padding: 8px 16px;
  background: white;
  border-top: 1px solid var(--tint);
  align-items: center;
  gap: 8px;
}

.rcv-bulk-info {
  font-size: 0.75rem;
  color: var(--light);
}

.rcv-bulk-actions {
  margin-left: auto;
  display: flex;
  gap: 6px;
}

/* 작은 버튼 — 일괄 액션용 */
.rcv-btn-sm {
  padding: 4px 10px;
  border: 1px solid var(--tint);
  border-radius: 6px;
  background: white;
  font-size: 0.6875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s;
}

.rcv-btn-sm:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.rcv-btn-sm-inspect {
  color: #B45309;
  border-color: rgba(245, 158, 11, 0.3);
}

.rcv-btn-sm-complete {
  color: #15803D;
  border-color: rgba(34, 197, 94, 0.3);
}

/* 선택 해제 버튼 */
.rcv-btn-sm-deselect {
  color: var(--tertiary);
  border-color: var(--tint);
}

/* 라벨 출력 버튼 */
.rcv-btn-sm-label {
  color: #6B7280;
  border-color: rgba(107, 114, 128, 0.3);
}

/* ─── 우측: 상세 슬라이드 패널 (420px) ─── */
.rcv-detail-panel {
  width: 0;
  flex-shrink: 0;
  background: white;
  border-left: 1px solid var(--tint);
  overflow: hidden;
  transition: width 0.25s ease;
  display: flex;
  flex-direction: column;
}

.rcv-detail-panel.open {
  width: 420px;
  overflow-y: auto;
}

/* 상세 안내 (클릭 전) */
.rcv-detail-placeholder {
  padding: 20px;
  text-align: center;
  color: var(--light);
}

.rcv-detail-placeholder i {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
  opacity: 0.3;
}

/* 상세 내용 */
.rcv-detail-content {
  display: none;
}

/* 상세 헤더 */
.rcv-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--tint);
}

.rcv-detail-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rcv-detail-batch-no {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
}

.rcv-detail-close {
  border: none;
  background: none;
  font-size: 1rem;
  color: var(--light);
  cursor: pointer;
  padding: 4px;
}

.rcv-detail-close:hover {
  color: var(--brand);
}

/* 상세 섹션 */
.rcv-detail-section {
  padding: 16px;
  border-bottom: 1px solid var(--tint);
}

.rcv-detail-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 상세 정보 그리드 — 2열 */
.rcv-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rcv-detail-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rcv-detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--tertiary);
}

.rcv-detail-value {
  font-size: 0.8125rem;
  color: var(--brand);
}

/* 진척률 바 */
.rcv-progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--tertiary);
  margin-bottom: 6px;
}

.rcv-progress-bar-bg {
  height: 8px;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
}

.rcv-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #3B82F6, #1E40AF);
  border-radius: 4px;
  transition: width 0.3s;
  width: 0;
}

/* 검수 폼 */
.rcv-inspect-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rcv-inspect-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rcv-inspect-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--tertiary);
}

.rcv-inspect-input {
  padding: 6px 10px;
  border: 1px solid var(--tint);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-family: inherit;
  color: var(--brand);
  outline: none;
}

.rcv-inspect-input:focus {
  border-color: var(--secondary);
}

.rcv-inspect-textarea {
  padding: 6px 10px;
  border: 1px solid var(--tint);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-family: inherit;
  color: var(--brand);
  outline: none;
  resize: vertical;
}

.rcv-inspect-textarea:focus {
  border-color: var(--secondary);
}

/* 검수 검증 메시지 */
.rcv-inspect-validation {
  font-size: 0.6875rem;
  min-height: 1rem;
}

.rcv-inspect-warn {
  color: #B45309;
}

.rcv-inspect-error {
  color: #DC2626;
}

.rcv-inspect-ok {
  color: #15803D;
}

/* 사진 첨부 */
.rcv-photo-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rcv-photo-empty {
  text-align: center;
  padding: 16px;
  color: var(--light);
  font-size: 0.75rem;
}

.rcv-photo-empty i {
  font-size: 1.5rem;
  margin-bottom: 4px;
  display: block;
  opacity: 0.3;
}

.rcv-photo-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rcv-photo-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: var(--bg-light);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--brand);
}

.rcv-btn-photo {
  align-self: flex-start;
}

/* 파일 입력 숨김 */
.rcv-file-input {
  display: none;
}

/* 상세 액션 버튼 영역 */
.rcv-detail-actions {
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rcv-action-btn {
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.15s;
}

.rcv-action-btn:hover {
  opacity: 0.85;
}

.rcv-action-inspect {
  background: #F59E0B;
  color: white;
}

.rcv-action-complete {
  background: #22C55E;
  color: white;
}

.rcv-action-return {
  background: #EF4444;
  color: white;
}

.rcv-action-reorder {
  background: var(--secondary);
  color: white;
}

.rcv-action-pdf {
  background: var(--brand);
  color: white;
}

.rcv-action-label {
  background: #6B7280;
  color: white;
}

/* ─── 신규 입고 등록 모달 ─── */
.rcv-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.rcv-modal-overlay.rcv-modal-open {
  display: flex;
}

.rcv-modal {
  background: white;
  border-radius: 12px;
  width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.rcv-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--tint);
}

.rcv-modal-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rcv-modal-close {
  border: none;
  background: none;
  font-size: 1rem;
  color: var(--light);
  cursor: pointer;
  padding: 4px;
}

.rcv-modal-close:hover {
  color: var(--brand);
}

.rcv-modal-body {
  padding: 20px;
}

.rcv-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 20px;
  border-top: 1px solid var(--tint);
}

/* 폼 그룹 */
.rcv-form-group {
  margin-bottom: 14px;
}

.rcv-form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 4px;
}

.rcv-required {
  color: #EF4444;
}

.rcv-form-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--tint);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-family: inherit;
  color: var(--brand);
  outline: none;
  box-sizing: border-box;
}

.rcv-form-input:focus {
  border-color: var(--secondary);
}

.rcv-form-input[readonly] {
  background: var(--bg-light);
  color: var(--tertiary);
}

.rcv-form-select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--tint);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-family: inherit;
  color: var(--brand);
  outline: none;
  background: white;
  box-sizing: border-box;
}

.rcv-form-select:focus {
  border-color: var(--secondary);
}

.rcv-form-textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--tint);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-family: inherit;
  color: var(--brand);
  outline: none;
  resize: vertical;
  box-sizing: border-box;
}

.rcv-form-textarea:focus {
  border-color: var(--secondary);
}

.rcv-form-hint {
  font-size: 0.6875rem;
  color: var(--light);
  margin-top: 4px;
}

.rcv-form-check {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rcv-form-check-label {
  font-size: 0.8125rem;
  color: var(--brand);
  cursor: pointer;
}

/* ─── 불량 사유 — 적색 배경 카드 (defectQty > 0 시 표시) ─── */
.rcv-defect-reason-row {
  display: none; /* 기본 숨김 — JS에서 defectQty > 0일 때 표시 */
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 10px;
}

.rcv-defect-reason-input {
  background: white;
  border-color: rgba(239, 68, 68, 0.3);
}

.rcv-defect-reason-input:focus {
  border-color: #EF4444;
}

/* ─── 페이지네이션 (서버 페이징 20건) ─── */
.rcv-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: white;
  border-top: 1px solid var(--tint);
}

.rcv-pagination-info {
  font-size: 0.75rem;
  color: var(--tertiary);
}

.rcv-pagination-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rcv-page-btn {
  padding: 4px 8px;
  border: 1px solid var(--tint);
  border-radius: 4px;
  background: white;
  color: var(--tertiary);
  font-size: 0.75rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rcv-page-btn:hover:not(:disabled) {
  border-color: var(--secondary);
  color: var(--brand);
}

.rcv-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.rcv-page-current {
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
}

/* ─── 토스트 알림 ─── */
.rcv-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--brand);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 200;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-size: 0.8125rem;
  font-weight: 500;
}

.rcv-toast.rcv-toast-show {
  transform: translateX(0);
  opacity: 1;
}
