:root {
  --bg: #071327;
  --surface: rgba(13, 31, 57, 0.84);
  --surface-strong: #0a1b36;
  --text: #f3f8ff;
  --muted: #b6c4d8;
  --line: rgba(111, 177, 217, 0.28);
  --green: #5ea638;
  --blue: #23336f;
  --amber: #e06935;
  --red: #bf2434;
  --teal: #2fb6c5;
  --shadow: 0 18px 50px rgba(47, 182, 197, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 182, 197, 0.16), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(94, 166, 56, 0.12), transparent 22%),
    radial-gradient(circle at 62% 72%, rgba(224, 105, 53, 0.09), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 14px clamp(12px, 3vw, 34px) 0;
  padding: 12px clamp(14px, 3vw, 34px);
  background: rgba(7, 19, 39, 0.82);
  border-bottom: 1px solid var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  text-decoration: none;
}

.brand-mark {
  width: 56px;
  height: 48px;
  border-radius: 6px;
  object-fit: contain;
  background: transparent;
  padding: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.panel-label,
.report-card small {
  color: var(--muted);
  font-size: 0.86rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.main-nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.main-nav a {
  color: rgba(238, 247, 255, 0.76);
}

.main-nav a:hover {
  background: rgba(47, 182, 197, 0.16);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(47, 182, 197, 0.26);
}

.section-band {
  padding: clamp(36px, 7vw, 76px) clamp(16px, 4vw, 48px);
}

.hero {
  position: relative;
  min-height: 500px;
  margin: -84px clamp(12px, 3vw, 34px) 0;
  padding-top: clamp(128px, 15vw, 180px);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 19, 39, 0.96) 0%, rgba(10, 27, 54, 0.78) 48%, rgba(10, 27, 54, 0.42) 100%),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9be8e6;
}

.button.primary {
  background: linear-gradient(135deg, var(--teal), #7cc242);
  color: #06121f;
  box-shadow: 0 0 24px rgba(47, 182, 197, 0.3);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.network-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #9be8e6;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-status span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(94, 166, 56, 0.9);
}

.button.upload-button {
  border: 0;
  background: var(--surface-strong);
  color: #ffffff;
  cursor: pointer;
}

.button.upload-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.outline-button {
  border: 1px solid var(--surface-strong);
  background: transparent;
  color: var(--surface-strong);
}

.ghost-button {
  border: 1px solid var(--line);
  background: #f7fafc;
  color: var(--muted);
  cursor: pointer;
}

.report-card,
.dashboard-action {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:last-child {
  color: var(--muted);
}

.access-body {
  min-height: 100vh;
}

.access-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(24px, 6vw, 64px);
}

.access-shell {
  width: min(100%, 760px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cpanel-shell {
  width: min(100%, 1180px);
}

.access-shell.is-hidden {
  display: none;
}

.is-hidden {
  display: none !important;
}

.access-shell .section-heading {
  margin-bottom: 18px;
}

.access-shell h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.login-form,
.mail-form {
  display: grid;
  gap: 14px;
}

.login-form label,
.mail-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.login-form input,
.mail-form input,
.mail-form select,
.mail-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafc;
  color: #172033;
  font: inherit;
  font-weight: 700;
}

.login-form input::placeholder,
.mail-form input::placeholder,
.mail-form textarea::placeholder {
  color: #64748b;
  opacity: 1;
}

.mail-form select:disabled,
.mail-form input:disabled,
.mail-form textarea:disabled {
  color: #172033;
  opacity: 1;
}

.mail-form textarea {
  min-height: 150px;
  resize: vertical;
}

.login-form input:focus,
.mail-form input:focus,
.mail-form select:focus,
.mail-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(6, 148, 162, 0.14);
}

.mail-shell {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.mail-shell .section-heading {
  margin-bottom: 14px;
}

.mail-shell h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.mail-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.inbox-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 12px;
}

.inbox-list,
.inbox-reader {
  min-height: 300px;
  max-height: 520px;
  overflow: auto;
}

.inbox-empty {
  margin: 0;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.inbox-empty.is-error {
  color: var(--red);
}

.inbox-item {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: #172033;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.inbox-item + .inbox-item {
  margin-top: 10px;
}

.inbox-item:hover,
.inbox-item.is-active {
  border-color: var(--teal);
  background: rgba(6, 148, 162, 0.08);
}

.inbox-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.inbox-item-head strong {
  color: #172033;
}

.inbox-item-head time,
.inbox-item p {
  color: #475569;
  font-size: 0.88rem;
}

.inbox-item p {
  margin: 0;
}

.inbox-preview {
  color: #172033 !important;
  white-space: pre-wrap;
}

.inbox-reader {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #172033;
}

.inbox-reader-head {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.inbox-reader h3 {
  margin: 0;
  color: #172033;
  font-size: 1.15rem;
  line-height: 1.2;
}

.inbox-reader time {
  color: #475569;
  font-size: 0.86rem;
  font-weight: 800;
}

.inbox-meta {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.inbox-meta div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
}

.inbox-meta dt,
.inbox-meta dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.inbox-meta dt {
  color: #475569;
  font-weight: 900;
}

.inbox-body {
  padding: 14px;
  border-radius: 8px;
  background: #f8fafc;
  color: #172033;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.inbox-body.is-empty {
  border: 1px dashed var(--line);
  color: var(--muted);
  font-weight: 800;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cpanel-toolbar {
  margin-bottom: 14px;
}

.cpanel-console {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(220, 62, 66, 0.28);
  border-radius: 8px;
  background: #fff5f5;
  color: #7f1d1d;
}

.cpanel-console[hidden] {
  display: none;
}

.cpanel-console > strong {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cpanel-console-item {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ffffff;
}

.cpanel-console-item small {
  color: #991b1b;
  font-weight: 800;
}

.cpanel-console-item ul {
  margin: 0;
  padding-left: 18px;
}

.cpanel-console-item li {
  margin-top: 4px;
}

.cpanel-table-wrap {
  max-height: 62vh;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.cpanel-table {
  width: 100%;
  border-collapse: collapse;
  color: #172033;
  font-size: 0.88rem;
}

.cpanel-table th,
.cpanel-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #dbe4ef;
  text-align: left;
  white-space: nowrap;
}

.cpanel-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #eaf1f8;
  color: #0f172a;
  font-weight: 900;
}

.cpanel-table tr:nth-child(even) td {
  background: #f8fafc;
}

.cpanel-delete-button {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(220, 62, 66, 0.3);
  border-radius: 6px;
  background: #fff5f5;
  color: var(--red);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.cpanel-delete-button:hover {
  border-color: var(--red);
  background: #ffe4e6;
}

.table-link {
  color: #0369a1;
  font-weight: 900;
  text-decoration: none;
}

.table-link:hover {
  text-decoration: underline;
}

.upload-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.upload-status.is-loading {
  color: var(--blue);
}

.upload-status.is-success {
  color: var(--green);
}

.upload-status.is-error {
  color: var(--red);
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.report-card {
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 6px;
  padding: 14px;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(47, 182, 197, 0.14), rgba(9, 27, 56, 0.9)),
    rgba(13, 31, 57, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.report-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 182, 197, 0.7);
  box-shadow: 0 0 28px rgba(47, 182, 197, 0.2);
}

.report-card span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.report-card strong {
  font-size: 1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.35rem;
}

.section-heading p:not(.eyebrow) {
  margin: 4px 0 0;
  color: var(--muted);
}

.dashboard-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
  align-items: stretch;
}

.dashboard-action {
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 3px;
  padding: 15px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(13, 31, 57, 0.84);
}

.dashboard-action.wide {
  grid-column: span 2;
}

.dashboard-action.control-panel {
  background: linear-gradient(135deg, rgba(35, 51, 111, 0.72), rgba(13, 31, 57, 0.84));
}

.dashboard-action.support {
  background: linear-gradient(135deg, rgba(224, 105, 53, 0.62), rgba(35, 51, 111, 0.82));
}

.dashboard-action.suggestion-trigger {
  background: linear-gradient(135deg, rgba(47, 182, 197, 0.5), rgba(13, 31, 57, 0.84));
}

.dashboard-action small {
  color: var(--muted);
}

.donation-section {
  margin: 0 clamp(12px, 3vw, 34px) 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 31, 57, 0.78);
}

.donation-section[hidden] {
  display: none;
}

.suggestion-section {
  margin: 0 clamp(12px, 3vw, 34px) 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 22, 39, 0.78);
}

.suggestion-section[hidden] {
  display: none;
}

.suggestion-form {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(220px, 1fr) auto;
  gap: 14px;
  align-items: end;
  max-width: 1040px;
}

.suggestion-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.suggestion-form input,
.suggestion-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #182230;
  font: inherit;
  font-weight: 700;
}

.suggestion-form textarea {
  min-height: 96px;
  resize: vertical;
}

.suggestion-form input:focus,
.suggestion-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(6, 148, 162, 0.14);
}

.suggestion-message,
.suggestion-form .upload-status {
  grid-column: 1 / -1;
}

.donation-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr)) auto;
  gap: 14px;
  align-items: end;
  max-width: 1040px;
}

.donation-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.donation-form input,
.donation-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #182230;
  font: inherit;
  font-weight: 700;
}

.donation-form input:focus,
.donation-form select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(6, 148, 162, 0.14);
}

.payment-options {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 10px;
}

.payment-option {
  display: grid;
  gap: 3px;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 27, 54, 0.9);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

.payment-option strong {
  font-size: 0.95rem;
}

.payment-option span {
  color: var(--muted);
  font-size: 0.82rem;
}

.payment-option.is-active {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 182, 197, 0.16);
}

.mercadopago-fields {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 14px;
}

.mercadopago-fields[hidden] {
  display: none;
}

.izipay-checkout {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  padding: 22px 14px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 8px;
  background: #eef3f8;
  color: #0f172a;
  box-shadow: 0 18px 45px rgba(2, 8, 23, 0.24);
  overflow: visible;
}

.izipay-checkout[hidden] {
  display: none;
}

.izipay-placeholder {
  padding: 18px;
  border: 1px dashed rgba(100, 116, 139, 0.45);
  border-radius: 8px;
  color: #475569;
  font-weight: 800;
  text-align: center;
}

.izipay-card {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 320px;
  gap: 12px;
  padding: 18px 16px;
  border: 1px solid #d7dee8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
  overflow: visible;
}

.izipay-logo {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1px;
  margin: -2px 0 2px;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.izipay-logo span:first-child {
  color: #ff4753;
}

.izipay-logo span:last-child {
  color: #51c7c8;
}

.izipay-brand-status,
.izipay-installment-note {
  margin: 0;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.izipay-brand-status {
  color: #0f172a;
}

.izipay-checkout .kr-embedded {
  display: grid;
  gap: 10px;
  width: 100%;
  color: #0f172a;
}

.izipay-checkout .kr-embedded * {
  box-sizing: border-box;
}

.izipay-checkout .kr-pan,
.izipay-checkout .kr-expiry,
.izipay-checkout .kr-security-code,
.izipay-checkout .kr-installment-number,
.izipay-checkout .kr-card-holder-name,
.izipay-checkout .kr-email {
  position: relative;
  width: 100%;
  height: 38px;
  min-height: 38px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #ffffff;
  color: #0f172a;
  overflow: hidden;
}

.izipay-checkout .kr-installment-number {
  z-index: 4;
  overflow: visible;
}

.izipay-checkout .kr-pan,
.izipay-checkout .kr-expiry,
.izipay-checkout .kr-security-code,
.izipay-checkout .kr-card-holder-name {
  padding: 0 10px;
}

.izipay-checkout .kr-pan iframe,
.izipay-checkout .kr-expiry iframe,
.izipay-checkout .kr-security-code iframe,
.izipay-checkout .kr-installment-number iframe,
.izipay-checkout .kr-card-holder-name iframe,
.izipay-checkout .kr-email iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  border: 0 !important;
}

.izipay-checkout .kr-embedded label,
.izipay-checkout .kr-label,
.izipay-checkout .kr-field-label {
  color: #334155;
  font-weight: 800;
}

.izipay-checkout select,
.izipay-checkout input {
  width: 100%;
  height: 38px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 700;
}

.izipay-checkout .kr-payment-button {
  width: 100%;
  min-height: 46px;
  margin-top: 2px;
  border: 0;
  border-radius: 8px;
  background: #111827;
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.izipay-checkout .kr-payment-button:hover {
  background: #0891b2;
}

.izipay-checkout .kr-form-error {
  color: #dc2626;
  font-size: 0.86rem;
  font-weight: 800;
  min-height: 20px;
  text-align: center;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 8, 23, 0.7);
}

.payment-modal[hidden] {
  display: none;
}

.payment-modal-card {
  position: relative;
  display: grid;
  width: min(420px, 100%);
  gap: 12px;
  justify-items: center;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  text-align: center;
  box-shadow: 0 26px 70px rgba(2, 8, 23, 0.42);
}

.payment-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #eef2f7;
  color: #475569;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.payment-modal-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  background: #e0f8eb;
  color: #16a34a;
  font-size: 1.8rem;
  font-weight: 900;
}

.payment-modal-icon::before {
  content: "✓";
}

.payment-modal.is-error .payment-modal-icon {
  background: #fee2e2;
  color: #dc2626;
}

.payment-modal.is-error .payment-modal-icon::before {
  content: "!";
}

.payment-modal.is-warning .payment-modal-icon {
  background: #fef3c7;
  color: #b45309;
}

.payment-modal.is-warning .payment-modal-icon::before {
  content: "!";
}

.payment-modal-card h2 {
  margin: 0;
  font-size: 1.55rem;
}

.payment-modal-card p {
  margin: 0;
  color: #475569;
  font-weight: 700;
}

.payment-modal-action {
  width: 100%;
}

.donation-form .upload-status {
  grid-column: 1 / -1;
}

.donation-return {
  text-align: center;
}

@media (max-width: 900px) {
  .app-header,
  .hero,
  .report-grid,
  .dashboard-actions,
  .inbox-layout,
  .payment-options,
  .mercadopago-fields,
  .suggestion-form,
  .donation-form {
    grid-template-columns: 1fr;
  }

  .app-header {
    display: grid;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .mail-heading {
    display: grid;
  }

  .dashboard-action.wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .main-nav a {
    flex: 1 1 120px;
  }
}
