/* ========================================
   closed-account.css — Closed-account state
   ======================================== */

.ca-screen {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  z-index: 99999;
}

.ca-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 400px;
  width: 100%;
  gap: 16px;
}

.ca-icon-wrap {
  width: 64px;
  height: 64px;
  background: #F3F0FB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6D28D9;
  flex-shrink: 0;
}

.ca-icon {
  width: 28px;
  height: 28px;
}

.ca-heading {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1.3;
}

.ca-body {
  font-size: 15px;
  color: #7A7A80;
  margin: 0;
  line-height: 1.6;
}

.ca-days {
  font-size: 14px;
  font-weight: 600;
  color: #6D28D9;
  margin: 0;
}

.ca-btn-primary {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: #6D28D9;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
}

.ca-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ca-btn-secondary {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #7A7A80;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
