/* Front: specific-agent request modal */
.lp-arb-front-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.5);
  animation: lp-arb-fade-in 0.15s ease;
}

.lp-arb-front-modal {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  padding: 24px 22px 18px;
  text-align: center;
  animation: lp-arb-pop-in 0.18s ease;
}

.lp-arb-front-modal-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7ed;
  color: #c2410c;
  font-size: 24px;
}

.lp-arb-front-modal-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
}

.lp-arb-front-modal-question {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.45;
  color: #334155;
}

.lp-arb-front-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.lp-arb-front-modal-actions .latepoint-btn {
  min-width: 100px;
  justify-content: center;
}

@keyframes lp-arb-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lp-arb-pop-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
