:root {
  --bg: #0b1220;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --primary: #2ef2b4;
  --primary-2: #2bb3ff;
  --danger: #ff4d6d;
  --focus: #ffdd57;
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1040px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1100px 700px at 10% -15%, rgba(46, 242, 180, 0.26), transparent 55%),
    radial-gradient(900px 600px at 95% 10%, rgba(43, 179, 255, 0.24), transparent 50%),
    radial-gradient(1100px 900px at 40% 110%, rgba(255, 77, 109, 0.13), transparent 55%), var(--bg);
}

a {
  color: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0b1220;
  transform: translateY(-180%);
  transition: transform 160ms ease;
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.site-header {
  position: relative;
}

.topbar {
  background: rgba(0, 0, 0, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.6px;
  background: linear-gradient(135deg, rgba(46, 242, 180, 0.92), rgba(43, 179, 255, 0.92));
  color: #041521;
  box-shadow: 0 10px 30px rgba(46, 242, 180, 0.12);
}

.brand__title {
  font-weight: 800;
  line-height: 1.1;
}

.brand__sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.topbar__contact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-pill {
  font-size: 13px;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.contact-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.hero {
  padding: 28px 0 22px;
}

.banner-strip {
  width: 100%;
  line-height: 0;
  background: rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.banner-strip img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
}

.banner-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  border-bottom: 2px solid #2ecc71;
}

.banner-tagline__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.banner-tagline__text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: #e0f7e9;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 600px) {
  .banner-tagline {
    padding: 12px 16px;
    gap: 8px;
  }
  .banner-tagline__text {
    font-size: 0.82rem;
  }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.hero__copy {
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero__copy::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(1200px 220px at 12% 20%, rgba(46, 242, 180, 0.22), transparent 55%),
    radial-gradient(520px 260px at 80% 30%, rgba(43, 179, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.hero__title {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.4px;
  position: relative;
}

.hero__lead {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
  position: relative;
}

.hero__actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.hero__card {
  border-radius: var(--radius);
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero__cardTitle {
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.hero__bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.page {
  padding: 14px 0 50px;
}

.form {
  display: grid;
  gap: 18px;
}

.card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card__header {
  padding: 18px 18px 0;
}

.card__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.card__subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.grid {
  padding: 16px 18px 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 14px;
}

.grid__span2 {
  grid-column: span 2;
}

.field label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 7px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.field select option {
  background: #1a1a2e;
  color: var(--text);
}

.field textarea {
  resize: vertical;
  min-height: 88px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(46, 242, 180, 0.6);
  box-shadow: 0 0 0 4px rgba(46, 242, 180, 0.12);
}

.hint {
  margin: 7px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.req {
  color: var(--primary);
  font-weight: 800;
}

.fieldset {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 12px 10px;
}

.fieldset legend {
  padding: 0 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.choices {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
  align-items: center;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  user-select: none;
  line-height: 1;
}
.choice input {
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  vertical-align: middle;
}
.choice span {
  vertical-align: middle;
  line-height: 1;
}

.uploads {
  padding: 14px 18px 18px;
  display: grid;
  gap: 12px;
}

.upload {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}

.upload__title {
  font-weight: 700;
  margin-bottom: 4px;
}

.upload__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.upload__control input[type="file"] {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
}

.instructions {
  margin: 0;
  padding: 0 18px 18px 34px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.instructions--compact {
  padding-left: 20px;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 6px 0 0;
}

.payment-card {
  margin-top: 4px;
}

.payment-grid {
  padding-top: 10px;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 11px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.btn--primary {
  border: 1px solid rgba(46, 242, 180, 0.45);
  background: linear-gradient(135deg, rgba(46, 242, 180, 0.22), rgba(43, 179, 255, 0.18));
  box-shadow: 0 14px 34px rgba(46, 242, 180, 0.12);
}

.btn--ghost {
  background: transparent;
}

.btn--danger {
  border-color: rgba(255, 77, 109, 0.35);
  background: rgba(255, 77, 109, 0.12);
}

/* Button skeleton loader */
.btn--loadable {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.btn--loadable[hidden] {
  display: none !important;
}

.btn--loadable .btn__label {
  transition: opacity 160ms ease;
}

.btn--loadable .btn__skeleton {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  pointer-events: none;
}

.btn--loadable.btn--loading {
  cursor: wait;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.btn--loadable.btn--loading:hover {
  transform: none;
}

.btn--loadable.btn--loading .btn__label {
  opacity: 0;
  visibility: hidden;
}

.btn--loadable.btn--loading .btn__skeleton {
  display: inline-flex;
}

.btn__skeleton-bar {
  display: block;
  height: 10px;
  width: 88px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.12) 38%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0.12) 62%,
    rgba(255, 255, 255, 0.12) 100%
  );
  background-size: 220% 100%;
  animation: btn-skeleton-shimmer 1.15s ease-in-out infinite;
}

.btn--primary .btn__skeleton-bar {
  background: linear-gradient(
    90deg,
    rgba(46, 242, 180, 0.18) 0%,
    rgba(46, 242, 180, 0.18) 38%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(43, 179, 255, 0.18) 62%,
    rgba(43, 179, 255, 0.18) 100%
  );
  background-size: 220% 100%;
}

.btn__skeleton-bar--short {
  width: 48px;
  animation-delay: 0.14s;
}

#btnPay.btn--loading {
  min-width: 220px;
}

#btnSubmit.btn--loading {
  min-width: 128px;
}

#btnLogin.btn--loading {
  min-width: 120px;
}

@keyframes btn-skeleton-shimmer {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn__skeleton-bar {
    animation: none;
    opacity: 0.55;
  }
}

.footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer__powered {
  color: rgba(255, 255, 255, 0.45);
}

/* Modal */
.modal {
  width: min(720px, calc(100vw - 24px));
  border: 0;
  border-radius: 18px;
  padding: 0;
  background: rgba(15, 20, 33, 0.96);
  color: var(--text);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.modal__header {
  padding: 14px 14px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.modal__title {
  font-weight: 800;
}

.modal__body {
  padding: 14px 14px 4px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.modal__lead {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
}

.modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}
.icon-btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.error-list {
  margin: 8px 0 12px;
  padding-left: 18px;
}

.error-list li {
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.9);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100vw - 36px));
  border-radius: 16px;
  border: 1px solid rgba(46, 242, 180, 0.35);
  background: rgba(10, 20, 25, 0.92);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.6);
  padding: 12px 12px;
}

.toast__title {
  font-weight: 900;
  color: rgba(46, 242, 180, 0.98);
}
.toast__body {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.4;
}

.status-note {
  line-height: 1.6;
}

.hero--compact {
  padding-top: 18px;
}

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

.admin-shell {
  display: grid;
  gap: 18px;
}

.admin-auth {
  max-width: 760px;
}

.auth-form {
  padding-top: 10px;
}

.admin-dashboard {
  display: grid;
  gap: 18px;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.admin-toolbar__group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.admin-toolbar__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-field {
  min-width: 210px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  padding: 16px;
}

.stat-card__label {
  color: var(--muted);
  font-size: 12px;
}

.stat-card__value {
  margin-top: 6px;
  font-size: 28px;
  font-weight: 800;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.3fr);
  gap: 18px;
}

.admin-list {
  padding: 0 18px 18px;
  display: grid;
  gap: 12px;
  max-height: 780px;
  overflow: auto;
}

.submission-item {
  width: 100%;
  text-align: left;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.submission-item:hover {
  transform: translateY(-1px);
  border-color: rgba(46, 242, 180, 0.42);
  background: rgba(255, 255, 255, 0.07);
}

.submission-item--active {
  border-color: rgba(46, 242, 180, 0.58);
  background: rgba(46, 242, 180, 0.09);
}

.submission-item__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.submission-item__meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.status-pill--paid {
  color: #9effd1;
  border-color: rgba(46, 242, 180, 0.44);
  background: rgba(46, 242, 180, 0.12);
}

.status-pill--pending {
  color: #ffe49b;
  border-color: rgba(255, 221, 87, 0.34);
  background: rgba(255, 221, 87, 0.11);
}

.status-pill--failed {
  color: #ffb0bf;
  border-color: rgba(255, 77, 109, 0.34);
  background: rgba(255, 77, 109, 0.11);
}

.status-pill--neutral {
  color: #b8cae8;
  border-color: rgba(184, 202, 232, 0.24);
  background: rgba(184, 202, 232, 0.08);
}

.admin-detail {
  padding: 0 18px 18px;
}

.detail-actions--top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.detail-grid {
  display: grid;
  gap: 14px;
}

.detail-card {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  padding: 16px;
}

.detail-card h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.detail-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px;
}

.detail-row dt {
  color: var(--muted);
}

.detail-row dd {
  margin: 0;
  word-break: break-word;
}

.invoice-id {
  font-family: monospace;
  font-size: 0.85rem;
  background: rgba(46, 242, 180, 0.1);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(46, 242, 180, 0.25);
  cursor: pointer;
  user-select: all;
}

.invoice-id:hover {
  background: rgba(46, 242, 180, 0.18);
}

.detail-preview {
  width: 100%;
  max-width: 240px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 14px;
}

.file-links {
  display: grid;
  gap: 14px;
}

.file-link {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.file-link:hover {
  border-color: rgba(46, 242, 180, 0.44);
  background: rgba(255, 255, 255, 0.07);
}

.file-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.file-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.file-card__label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.file-card__download {
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.file-card__download:hover {
  text-decoration: underline;
}

.file-preview--image img {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.3);
}

.file-preview--pdf iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
  background: #fff;
}

.pdf-actions {
  display: flex;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.btn--sm {
  padding: 4px 12px;
  font-size: 0.8rem;
}

.empty-state {
  padding: 24px 0;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

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

  .admin-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid__span2 {
    grid-column: span 1;
  }
  .upload {
    grid-template-columns: 1fr;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-toolbar {
    align-items: stretch;
  }

  .admin-toolbar__group,
  .admin-toolbar__actions {
    width: 100%;
  }

  .admin-field {
    min-width: 100%;
  }

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

  .detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .file-link {
    flex-direction: column;
  }
}

