/* [project]/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
}

body {
  color: #17212b;
  background: #f5f7f8;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

button {
  cursor: pointer;
  color: #fff;
  background: #126b3a;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 700;
}

button.secondary {
  color: #126b3a;
  background: #fff;
  border: 1px solid #126b3a;
}

main {
  min-height: 100vh;
}

.banner {
  text-align: center;
  background: #fff3cd;
  border-bottom: 1px solid #ead28a;
  padding: 10px 6vw;
}

.header {
  background: #fff;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 52px 8vw 64px;
  display: flex;
}

.homeHeaderContent {
  flex: 1;
}

.homeGovernmentIdentity {
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  display: flex;
}

.homeFlag {
  object-fit: cover;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  width: 110px;
  height: 58px;
  display: block;
}

.homeSeal {
  object-fit: contain;
  width: 78px;
  height: 78px;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #126b3a;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  max-width: 800px;
  margin: 8px 0;
  font-size: clamp(36px, 6vw, 64px);
}

.subtitle {
  color: #52606d;
  max-width: 680px;
  font-size: 20px;
  line-height: 1.5;
}

.actions {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.actions a {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.actions .secondary {
  color: #126b3a;
  background: #fff;
  border: 1px solid #126b3a;
}

.primaryHomeButton {
  color: #fff;
  background: #126b3a;
  border: 1px solid #126b3a;
}

.status {
  background: #e8f4ed;
  border-radius: 8px;
  margin: 24px 8vw 0;
  padding: 16px;
}

.services {
  padding: 48px 8vw;
}

.services h2 {
  font-size: 32px;
}

.grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 18px #0000000f;
}

.card p {
  color: #52606d;
  line-height: 1.5;
}

.linkButton {
  color: #126b3a;
  background: none;
  padding-left: 0;
}

@media (max-width: 800px) {
  .header {
    flex-direction: column;
    padding: 40px 6vw;
  }

  .homeGovernmentIdentity {
    gap: 14px;
  }

  .homeFlag {
    width: 92px;
    height: 49px;
  }

  .homeSeal {
    width: 68px;
    height: 68px;
  }

  .actions {
    width: 100%;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .services, .status {
    margin-left: 6vw;
    margin-right: 6vw;
  }

  .services {
    padding-left: 0;
    padding-right: 0;
  }
}

.registerPage {
  background: #f5f7f8;
  justify-content: center;
  min-height: 100vh;
  padding: 48px 20px;
  display: flex;
}

.registerCard {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 680px;
  padding: 32px;
  box-shadow: 0 4px 18px #00000014;
}

.registerCard form {
  gap: 18px;
  margin-top: 24px;
  display: grid;
}

.registerCard label {
  gap: 8px;
  font-weight: 700;
  display: grid;
}

.registerCard input {
  border: 1px solid #aab4bd;
  border-radius: 8px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
}

.page {
  background: #f5f7f8;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 48px 20px;
  display: flex;
}

.verificationCard {
  text-align: center;
  background: #fff;
  border: 2px solid #7f1d1d;
  border-radius: 20px;
  width: 100%;
  max-width: 950px;
  padding: 48px;
  box-shadow: 0 10px 35px #00000014;
}

.verifiedCard {
  border-color: #14532d;
}

.notVerifiedCard {
  border-color: #8b1e1e;
}

.sealContainer {
  justify-content: center;
  margin-bottom: 18px;
  display: flex;
}

.seal {
  object-fit: contain;
  width: 130px;
  height: 130px;
}

.countryName {
  color: #173f32;
  letter-spacing: .16em;
  text-align: center;
  margin: 0;
  font-size: 25px;
  font-weight: 800;
}

.verificationTitle {
  text-align: center;
  max-width: none;
  margin: 28px 0 22px;
  font-size: clamp(46px, 8vw, 82px);
  font-weight: 800;
  line-height: 1.05;
}

.verifiedTitle {
  color: #14532d;
}

.notVerifiedTitle {
  color: #8b1e1e;
}

.message {
  color: #35414c;
  text-align: center;
  margin: 0 auto 28px;
  font-size: 22px;
  line-height: 1.5;
}

.referenceBox {
  text-align: left;
  background: #f5f7f8;
  border: 1px solid #d5dadd;
  border-radius: 12px;
  width: 100%;
  max-width: 650px;
  margin: 24px auto 0;
  padding: 20px;
}

.recordDetails {
  padding: 8px;
}

.detailRow {
  border-bottom: 1px solid #e4e7e9;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 10px 0;
  display: grid;
}

.detailRow:last-child {
  border-bottom: 0;
}

.detailRow strong {
  color: #17212b;
}

.returnButton {
  color: #fff;
  background: #124d3b;
  border-radius: 10px;
  margin-top: 30px;
  padding: 15px 30px;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}

.verificationActions {
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  margin-top: 30px;
  display: flex;
}

.printButton, .returnButton {
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  min-height: 54px;
  margin-top: 0;
  padding: 14px 28px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
}

.printButton {
  background: #1f2937;
}

.printButton:hover {
  background: #111827;
}

.returnButton {
  background: #0f5132;
}

.returnButton:hover {
  background: #0b3d26;
}

.qrSection {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 26px 0;
  display: flex;
}

.qrCodeWrapper {
  background: #fff;
  border: 1px solid #d7dce0;
  border-radius: 10px;
  padding: 12px;
}

.qrText {
  color: #52606d;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .page {
    align-items: flex-start;
    padding: 20px 12px;
  }

  .verificationCard {
    border-radius: 14px;
    margin: 20px auto;
    padding: 30px 18px;
  }

  .seal {
    width: 105px;
    height: 105px;
  }

  .countryName {
    letter-spacing: .1em;
    font-size: 18px;
  }

  .verificationTitle {
    font-size: 48px;
  }

  .message {
    font-size: 18px;
  }

  .referenceBox {
    padding: 18px;
  }

  .detailRow {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .verificationActions {
    flex-direction: column;
  }

  .printButton, .returnButton {
    width: 100%;
    min-width: 0;
  }
}

@media print {
  @page {
    size: A4;
    margin: 5mm;
  }

  .verificationCard {
    transform-origin: top;
    transform: scale(.9);
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    margin: 0 auto !important;
    padding: 20px !important;
  }

  .seal {
    width: 70px !important;
    height: 70px !important;
  }

  .verificationTitle {
    margin-bottom: 10px !important;
    font-size: 48px !important;
  }

  .referenceBox {
    margin-top: 15px !important;
  }

  .qrSection {
    margin: 10px 0 !important;
  }
}

.adminDashboardPage {
  background: #f5f7f8;
  min-height: 100vh;
  padding: 40px 6vw;
}

.adminDashboardHeader {
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  display: flex;
}

.adminDashboardHeader h1 {
  max-width: none;
  margin: 6px 0 10px;
  font-size: clamp(42px, 6vw, 72px);
}

.adminDashboardHeader p {
  color: #52606d;
  margin: 0;
  font-size: 18px;
}

.adminDashboardHeader button {
  flex-shrink: 0;
}

.adminDashboardNav {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  display: flex;
}

.adminDashboardNav a {
  color: #14532d;
  background: #fff;
  border: 1px solid #b8c5bf;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.adminDashboardNav a:hover {
  color: #fff;
  background: #14532d;
  border-color: #14532d;
}

.dashboardCardGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  display: grid;
}

.dashboardSummaryCard {
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 14px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  padding: 24px;
  display: flex;
  box-shadow: 0 6px 20px #0000000f;
}

.dashboardSummaryCard span {
  color: #52606d;
  font-size: 15px;
  font-weight: 700;
  display: block;
}

.dashboardSummaryCard strong {
  color: #14532d;
  font-size: 38px;
  line-height: 1;
  display: block;
}

.dashboardError {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 16px;
}

@media (max-width: 1000px) {
  .dashboardCardGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .adminDashboardPage {
    padding: 24px 16px;
  }

  .adminDashboardHeader {
    flex-direction: column;
  }

  .adminDashboardNav {
    flex-direction: column;
    align-items: stretch;
  }

  .adminDashboardNav a {
    width: 100%;
  }

  .dashboardCardGrid {
    grid-template-columns: 1fr;
  }

  .dashboardSummaryCard {
    min-height: 125px;
  }
}

.adminPaymentsPage {
  background: #f5f7f8;
  min-height: 100vh;
  padding: 40px 6vw;
}

.adminPaymentsHeader {
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 30px;
  display: flex;
}

.adminPaymentsHeader h1 {
  max-width: none;
  margin: 6px 0 10px;
  font-size: clamp(38px, 5vw, 62px);
}

.adminPaymentsHeader p {
  color: #52606d;
  margin: 0;
}

.dashboardBackLink {
  color: #fff;
  background: #14532d;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 11px 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.adminTableWrapper {
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 14px;
  width: 100%;
  overflow-x: auto;
  box-shadow: 0 6px 20px #0000000f;
}

.adminPaymentsTable {
  border-collapse: collapse;
  width: 100%;
  min-width: 900px;
}

.adminPaymentsTable th, .adminPaymentsTable td {
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #e5e9ec;
  padding: 16px;
}

.adminPaymentsTable th {
  color: #173f32;
  text-transform: uppercase;
  letter-spacing: .03em;
  background: #edf4f0;
  font-size: 14px;
}

.adminPaymentsTable tbody tr:hover {
  background: #f8faf9;
}

.adminPaymentsTable select {
  background: #fff;
  border: 1px solid #aab4bd;
  border-radius: 7px;
  min-width: 140px;
  padding: 9px 10px;
  font-size: 14px;
}

.adminPaymentsTable select:disabled {
  cursor: wait;
  opacity: .65;
}

.paymentStatus {
  text-transform: capitalize;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
}

.paymentStatus-pending {
  color: #92400e;
  background: #fef3c7;
}

.paymentStatus-paid {
  color: #166534;
  background: #dcfce7;
}

.paymentStatus-failed, .paymentStatus-cancelled {
  color: #991b1b;
  background: #fee2e2;
}

.paymentStatus-refunded {
  color: #3730a3;
  background: #e0e7ff;
}

.paymentUpdating {
  color: #52606d;
  margin-top: 6px;
  font-size: 12px;
  display: block;
}

.emptyPaymentsState {
  color: #52606d;
  text-align: center;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 12px;
  padding: 30px;
}

@media (max-width: 700px) {
  .adminPaymentsPage {
    padding: 24px 16px;
  }

  .adminPaymentsHeader {
    flex-direction: column;
  }

  .dashboardBackLink {
    width: 100%;
  }
}

.passportAdminPage {
  background: #f3f6f4;
  min-height: 100vh;
  padding: 40px 5vw;
}

.passportAdminContainer {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.passportAdminHeader {
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
  display: flex;
}

.passportAdminHeader h1 {
  color: #17212b;
  max-width: none;
  margin: 6px 0 10px;
  font-size: clamp(42px, 6vw, 70px);
}

.passportAdminHeader p {
  color: #52606d;
  margin: 0;
  font-size: 17px;
}

.passportAdminHeaderActions {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  display: flex;
}

.passportAdminSecondaryButton, .passportAdminSignOutButton {
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
}

.passportAdminSecondaryButton {
  color: #14532d;
  background: #fff;
  border: 1px solid #b8c5bf;
}

.passportAdminSignOutButton {
  color: #fff;
  background: #14532d;
  border: 1px solid #14532d;
}

.passportAdminNav {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
  display: flex;
}

.passportAdminNav a {
  color: #14532d;
  background: #fff;
  border: 1px solid #b8c5bf;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-height: 43px;
  padding: 10px 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.passportAdminNav a:hover, .passportAdminNav a.active {
  color: #fff;
  background: #14532d;
  border-color: #14532d;
}

.passportSummaryGrid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  display: grid;
}

.passportSummaryCard {
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 13px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 125px;
  padding: 20px;
  display: flex;
  box-shadow: 0 5px 18px #0000000f;
}

.passportSummaryCard span {
  color: #52606d;
  font-size: 14px;
  font-weight: 800;
}

.passportSummaryCard strong {
  color: #14532d;
  font-size: 34px;
}

.passportAdminControls {
  grid-template-columns: minmax(280px, 1fr) 240px auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 12px;
  display: grid;
}

.passportSearchControl, .passportStatusControl {
  gap: 7px;
  display: grid;
}

.passportSearchControl label, .passportStatusControl label {
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.passportSearchControl input, .passportStatusControl select {
  color: #17212b;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 15px;
}

.passportRefreshButton {
  color: #fff;
  background: #1f2937;
  border: 0;
  border-radius: 9px;
  min-height: 48px;
  padding: 12px 20px;
  font-weight: 800;
}

.passportRefreshButton:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.passportResultsCount {
  color: #64748b;
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 700;
}

.passportAdminMessage {
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 12px;
  padding: 22px;
  font-weight: 700;
}

.passportAdminError {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  gap: 10px;
  padding: 20px;
  display: grid;
}

.passportAdminError button {
  background: #991b1b;
  width: fit-content;
}

.passportAdminTableWrapper {
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 14px;
  width: 100%;
  overflow-x: auto;
  box-shadow: 0 6px 22px #00000012;
}

.passportAdminTable {
  border-collapse: collapse;
  width: 100%;
  min-width: 1250px;
}

.passportAdminTable th, .passportAdminTable td {
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #e5e7eb;
  padding: 15px 16px;
}

.passportAdminTable th {
  color: #173f32;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: #eef4f0;
  font-size: 13px;
}

.passportAdminTable tbody tr:hover {
  background: #f8faf9;
}

.passportApplicantLink {
  color: #065f46;
  font-weight: 800;
  text-decoration: none;
}

.passportApplicantLink:hover {
  text-decoration: underline;
}

.passportContactCell {
  gap: 4px;
  display: grid;
}

.passportContactCell small {
  color: #64748b;
}

.passportStatusBadge {
  white-space: nowrap;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
}

.statusPending {
  color: #334155;
  background: #e2e8f0;
}

.statusUnderReview {
  color: #92400e;
  background: #fef3c7;
}

.statusApproved {
  color: #166534;
  background: #dcfce7;
}

.statusIssued {
  color: #1e40af;
  background: #dbeafe;
}

.statusRejected {
  color: #991b1b;
  background: #fee2e2;
}

.passportTableActions {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.passportViewButton, .passportVerifyButton {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
}

.passportViewButton {
  color: #fff;
  background: #065f46;
}

.passportVerifyButton {
  color: #065f46;
  background: #fff;
  border: 1px solid #86a99b;
}

@media (max-width: 1150px) {
  .passportSummaryGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 750px) {
  .passportAdminPage {
    padding: 24px 16px;
  }

  .passportAdminHeader {
    flex-direction: column;
  }

  .passportAdminHeaderActions {
    width: 100%;
  }

  .passportAdminSecondaryButton, .passportAdminSignOutButton {
    flex: 1;
  }

  .passportAdminNav {
    flex-direction: column;
  }

  .passportAdminNav a {
    width: 100%;
  }

  .passportSummaryGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .passportAdminControls {
    grid-template-columns: 1fr;
  }

  .passportRefreshButton {
    width: 100%;
  }
}

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

.issuedPassportsPage {
  background: #f3f6f4;
  min-height: 100vh;
  padding: 40px 5vw;
}

.issuedPassportsHeader {
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  display: flex;
}

.issuedPassportsHeader h1 {
  max-width: none;
  margin: 6px 0 10px;
  font-size: clamp(42px, 6vw, 68px);
}

.issuedPassportsHeader p {
  color: #52606d;
  margin: 0;
}

.issuedPassportSearch {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  width: 100%;
  min-height: 48px;
  margin-bottom: 20px;
  padding: 12px 14px;
  font-size: 15px;
}

.issuedPassportsTableWrapper {
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 14px;
  width: 100%;
  overflow-x: auto;
  box-shadow: 0 6px 22px #00000012;
}

.issuedPassportsTable {
  border-collapse: collapse;
  width: 100%;
  min-width: 1250px;
}

.issuedPassportsTable th, .issuedPassportsTable td {
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  padding: 15px 16px;
}

.issuedPassportsTable th {
  color: #173f32;
  text-transform: uppercase;
  background: #eef4f0;
  font-size: 13px;
}

.issuedPassportsTable tbody tr:hover {
  background: #f8faf9;
}

.issuedPassportActions {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.issuedPassportActions a {
  color: #fff;
  background: #14532d;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
}

.issuedPassportMessage, .issuedPassportError {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  font-weight: 700;
}

.issuedPassportError {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

@media (max-width: 700px) {
  .issuedPassportsPage {
    padding: 24px 16px;
  }

  .issuedPassportsHeader {
    flex-direction: column;
  }

  .issuedPassportsHeader .backDashboardButton {
    width: 100%;
  }
}

.citizenApplicationDetailsPage {
  background: #f5f7f8;
  min-height: 100vh;
  padding: 40px 6vw;
}

.citizenApplicationDetailsHeader {
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  display: flex;
}

.citizenApplicationDetailsHeader h1 {
  max-width: none;
  margin: 6px 0 10px;
  font-size: clamp(42px, 6vw, 68px);
}

.citizenApplicationDetailsHeader p {
  color: #52606d;
  margin: 0;
}

.citizenBackButton, .citizenVerifyButton, .citizenSecondaryButton {
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 11px 17px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
}

.citizenBackButton, .citizenVerifyButton {
  color: #fff;
  background: #14532d;
}

.citizenSecondaryButton {
  color: #14532d;
  background: #fff;
  border: 1px solid #14532d;
}

.citizenApplicationDetailsCard {
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 14px;
  width: 100%;
  max-width: 950px;
  padding: 24px;
  box-shadow: 0 6px 20px #0000000f;
}

.citizenDetailRow {
  border-bottom: 1px solid #e5e7eb;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  display: grid;
}

.citizenDetailRow:last-child {
  border-bottom: 0;
}

.citizenDetailRow strong {
  color: #334155;
}

.citizenDetailRow span {
  color: #17212b;
  overflow-wrap: anywhere;
}

.citizenApplicationActions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  display: flex;
}

.citizenApplicationError {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  max-width: 720px;
  padding: 24px;
}

.citizenApplicationError a {
  color: #14532d;
  margin-top: 12px;
  font-weight: 800;
  display: inline-block;
}

@media (max-width: 700px) {
  .citizenApplicationDetailsPage {
    padding: 24px 16px;
  }

  .citizenApplicationDetailsHeader {
    flex-direction: column;
  }

  .citizenBackButton {
    width: 100%;
  }

  .citizenDetailRow {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .citizenApplicationActions {
    flex-direction: column;
  }

  .citizenVerifyButton, .citizenSecondaryButton {
    width: 100%;
  }
}

.citizenDownloadButton {
  color: #fff;
  cursor: pointer;
  background: #1d4ed8;
  border: 0;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 11px 17px;
  font-weight: 800;
  display: inline-flex;
}

.citizenDownloadButton:hover {
  background: #1e40af;
}

.citizenDownloadButton:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.citizenDownloadError {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 9px;
  width: 100%;
  max-width: 950px;
  margin-top: 18px;
  padding: 14px 16px;
  font-weight: 700;
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/