.ops-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.48);
}

.ops-modal-box {
  width: min(560px, 100%);
  border-radius: 10px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.25);
}

.ops-modal-box h3 {
  margin: 0 0 16px;
  color: #0f172a;
}

.confirm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.confirm-grid div {
  min-height: 78px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.detail-box {
  width: min(860px, 100%);
  max-height: 82vh;
  overflow: hidden;
}

.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.detail-body {
  max-height: 62vh;
  overflow: auto;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
}

.detail-table th,
.detail-table td {
  padding: 9px 8px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  font-size: 0.86rem;
}

.detail-table th {
  background: #f8fafc;
  color: #475569;
}

@media (max-width: 720px) {
  .confirm-grid {
    grid-template-columns: 1fr;
  }
}
