
/* KYC Modal Specific Styles */
.kyc-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.kyc-modal.hidden {
  display: none;
}

.kyc-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.kyc-modal-content h2 {
  margin-bottom: 10px;
  color: #d32f2f;
}

.kyc-modal-content .kyc-btn {
  display: block;
  width: 100%;
  margin: 8px 0;
  padding: 12px 20px;
  background-color: #0288d1;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.kyc-modal-content .kyc-btn-secondary {
  background-color: #e0e0e0;
  color: #000;
}
