/* Clean, professional, conservative UI (light theme) */
:root {
  --bg: #f5f7fb;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --muted2: #64748b;
  --border: #e5e7eb;
  --primary: #2563eb;
  --primary-strong: #1d4ed8;
  --shadow: 0 12px 30px rgba(2, 6, 23, 0.12);
  --radius: 14px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(37, 99, 235, 0.10), transparent 60%),
    radial-gradient(720px 460px at 95% 10%, rgba(14, 165, 233, 0.10), transparent 55%),
    var(--bg);
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}

/* lock page scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

.app {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 16px 44px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 4px 12px;
}

h1,
h2 {
  margin: 10px 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 22px;
  font-weight: 750;
}

h2 {
  font-size: 16px;
  font-weight: 750;
  color: var(--text);
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.22);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  min-width: 0;
}

.brand-title {
  font-size: 18px;
  font-weight: 780;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 10px;
  margin: 6px 0 14px;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.08);
}

.nav button {
  width: auto;
  flex: 1;
  padding: 10px 12px;
}

.nav button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

form,
section {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}

label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

input,
select,
button {
  width: 100%;
  padding: 11px 12px;
  margin-top: 4px;
  border-radius: var(--radius-sm);
}

/* buttons should not be full-width globally */
button {
  width: auto;
  margin-top: 0;
}

/* inputs/selects should remain full-width */
input,
select {
  width: 100%;
}

/* within forms/controls, keep buttons full-width */
form button,
.actions button,
.filters button,
#uploadBtn {
  width: 100%;
  margin-top: 4px;
}

input,
select {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  outline: none;
}

input::placeholder {
  color: #94a3b8;
}

input:focus,
select:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

button {
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 680;
  letter-spacing: 0.01em;
  transition: transform 0.08s ease, filter 0.08s ease;
}

button.secondary {
  background: #fff;
  border: 1px solid var(--border);
  color: #0f172a;
}

.btn-sm {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 650;
}

button:hover {
  filter: brightness(1.05);
}

button:active {
  transform: translateY(1px);
}

button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.actions {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.filters {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-bottom: 12px;
}

.hidden {
  display: none !important;
}

.muted {
  color: var(--muted);
}

.spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(148, 163, 184, 0.55);
  border-top-color: var(--primary);
  display: inline-block;
  animation: spin 0.8s linear infinite;
}
.spinner.sm {
  width: 12px;
  height: 12px;
  border-width: 2px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(2, 6, 23, 0.10);
  background: rgba(2, 6, 23, 0.03);
  color: var(--text);
  white-space: nowrap;
}

/* Badge as button (used for rejected status) */
button.badge-btn {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  line-height: 1.2;
}
button.badge-btn:hover {
  filter: brightness(1.03);
}
button.badge-btn:active {
  transform: translateY(0);
}
.badge.success {
  border-color: rgba(34, 197, 94, 0.30);
  background: rgba(34, 197, 94, 0.10);
  color: #15803d;
}
.badge.info {
  border-color: rgba(37, 99, 235, 0.30);
  background: rgba(37, 99, 235, 0.10);
  color: #1d4ed8;
}
.badge.warn {
  border-color: rgba(245, 158, 11, 0.30);
  background: rgba(245, 158, 11, 0.14);
  color: #92400e;
}
.badge.danger {
  border-color: rgba(239, 68, 68, 0.30);
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}
.badge.muted {
  border-color: rgba(148, 163, 184, 0.45);
  background: rgba(148, 163, 184, 0.14);
  color: #334155;
}

.pill-type {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  border: 1px solid rgba(2, 6, 23, 0.10);
  background: rgba(2, 6, 23, 0.03);
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
}
.pill-type.nfce {
  border-color: rgba(37, 99, 235, 0.25);
  background: rgba(37, 99, 235, 0.10);
  color: #1d4ed8;
}
.pill-type.nfse {
  border-color: rgba(168, 85, 247, 0.25);
  background: rgba(168, 85, 247, 0.10);
  color: #6d28d9;
}
.pill-type.fatura {
  border-color: rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.10);
  color: #15803d;
}

tbody tr:hover td {
  background: rgba(37, 99, 235, 0.04);
}

/* Professional table sizing */
table { font-size: 14px; }
thead th { position: sticky; top: 0; z-index: 2; }
td { line-height: 1.35; }

/* Documents list baseline (mobile/tablet safe) */
#documentsSection table {
  table-layout: auto;
}

#documentsSection td[data-label="Emitente"],
#documentsSection td[data-label="Cidade"] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#documentsSection td[data-label="Valor"],
#documentsSection td[data-label="ID"] { white-space: nowrap; }

#documentsSection td[data-label="Status"],
#documentsSection td[data-label="Enviado"] {
  white-space: nowrap;
}

#documentsSection td[data-label="Status"] .badge,
#documentsSection td[data-label="Status"] .badge-btn {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

#documentsSection td[data-label="Ações"] .btn-xs {
  min-width: 82px;
  white-space: nowrap;
}

@media (min-width: 1101px) {
  #documentsSection .table-scroll {
    overflow-x: hidden;
  }
  #documentsSection table {
    table-layout: fixed;
  }
  #documentsSection th,
  #documentsSection td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #documentsSection table thead th:nth-child(1),
  #documentsSection table tbody td:nth-child(1) { width: 5%; }
  #documentsSection table thead th:nth-child(2),
  #documentsSection table tbody td:nth-child(2) { width: 10%; }
  #documentsSection table thead th:nth-child(3),
  #documentsSection table tbody td:nth-child(3) { width: 20%; }
  #documentsSection table thead th:nth-child(4),
  #documentsSection table tbody td:nth-child(4) { width: 11%; }
  #documentsSection table thead th:nth-child(5),
  #documentsSection table tbody td:nth-child(5) { width: 10%; }
  #documentsSection table thead th:nth-child(6),
  #documentsSection table tbody td:nth-child(6) { width: 10%; }
  #documentsSection table thead th:nth-child(7),
  #documentsSection table tbody td:nth-child(7) { width: 14%; }
  #documentsSection table thead th:nth-child(8),
  #documentsSection table tbody td:nth-child(8) { width: 11%; }
  #documentsSection table thead th:nth-child(9),
  #documentsSection table tbody td:nth-child(9) { width: 9%; }
}

@media (max-width: 1100px) {
  #documentsSection .table-scroll {
    overflow-x: auto;
  }
  #documentsSection table {
    min-width: 980px;
    table-layout: auto;
  }
}

/* Compact action button */
button.secondary.btn-xs {
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 700;
}

.loading-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 10px;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 0;
}

th,
td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted2);
  background: #f1f5f9;
  z-index: 1;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  z-index: 1000;
}

.modal-content {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 18px;
  width: 90%;
  max-width: 560px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1001;
}

.modal-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.01em;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 20px;
  padding: 8px;
  color: var(--muted);
  cursor: pointer;
  border-radius: 10px;
}
.icon-btn:hover {
  background: rgba(2, 6, 23, 0.04);
  color: var(--text);
}

/* Professionalize "rejected" and "exclude" modals (keep scope limited) */
#docRejectModal .modal-content,
#docExcludeModal .modal-content {
  max-width: 720px;
  padding: 22px 22px 18px;
}

#docRejectModal .modal-header,
#docExcludeModal .modal-header {
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

#docRejectTitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
#docRejectTitle::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  font-weight: 900;
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  flex: 0 0 auto;
}

#docRejectMeta,
#docExcludeMeta {
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.35;
}

#docRejectReason {
  border: 1px solid rgba(239, 68, 68, 0.20);
  background: rgba(239, 68, 68, 0.08);
  color: #7f1d1d;
  border-radius: 14px;
  padding: 14px 14px;
  font-weight: 650;
  line-height: 1.45;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.modal-actions button {
  width: auto;
}
.modal-actions button.secondary {
  flex: 1;
}

.doc-items-modal {
  max-width: 720px;
}
.items-scroll {
  max-height: 62vh;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.items-table {
  margin-top: 0;
  border-radius: 0;
}
.items-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}
.item-cell {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.item-desc {
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.item-meta {
  font-size: 12px;
  color: var(--muted2);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.item-extra {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

video {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

@media (max-width: 520px) {
  .app {
    padding: 16px 12px 38px;
  }

  form,
  section {
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Stack filters vertically on mobile to prevent date inputs from breaking layout */
  .filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    width: 100%;
    min-width: 0;
  }

  .filters input,
  .filters select,
  .filters button {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  /* Reset date inputs for iOS */
  input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    min-width: 0;
    background-color: #fff;
  }

  /* Mobile: documents table as compact cards */
  .table-scroll { overflow-x: visible; }
  table { display: block; }
  #documentsSection table { min-width: 0; table-layout: auto; }
  thead { display: none; }
  tbody { display: block; }

  tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  tbody td {
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    text-align: left;
  }

  tbody td::before {
    content: attr(data-label);
    font-weight: 800;
    color: var(--muted2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 10px;
    line-height: 1.1;
  }

  /* Place fields */
  tbody td[data-label="ID"] { order: 1; grid-column: 1; }
  tbody td[data-label="Tipo"] { order: 2; grid-column: 2; align-items: flex-end; }
  tbody td[data-label="Tipo"]::before { display: none; }

  tbody td[data-label="Status"] { order: 3; grid-column: 1 / -1; }
  tbody td[data-label="Emitente"] { order: 4; grid-column: 1 / -1; }
  tbody td[data-label="Cidade"] { order: 5; grid-column: 1; }
  tbody td[data-label="Valor"] { order: 6; grid-column: 2; align-items: flex-end; }
  tbody td[data-label="Emissão"] { order: 7; grid-column: 1; }
  tbody td[data-label="Enviado"] { order: 8; grid-column: 2; align-items: flex-end; }
  tbody td[data-label="Ações"] { order: 9; grid-column: 1 / -1; }
  tbody td[data-label="Ações"]::before { display: none; }
  tbody td[data-label="Ações"] button { width: 100%; }

  /* Make badges/pills slightly smaller on mobile */
  .pill-type { font-size: 11px; padding: 6px 10px; }
  .badge { font-size: 11px; padding: 6px 10px; }
}

/* --- New Premium Upload Flow Styles --- */

/* Utility Helpers */
.icon-btn {
  background: none;
  border: none;
  font-size: 20px;
  padding: 8px;
  color: var(--muted);
  cursor: pointer;
  min-height: auto !important;
}

.is-full {
  width: 100%;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}

/* Wallet Card Style */
.wallet-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px 0;
}

.card-wallet {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-wallet:active {
  transform: scale(0.98);
}

.card-wallet::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.card-brand {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-number {
  font-family: monospace;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-group-pill {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

/* Modal Bottom Sheet (Mobile) */
@media (max-width: 520px) {
  .modal.bottom-sheet {
    align-items: flex-end;
    padding: 0;
  }

  .modal.bottom-sheet .modal-content {
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 24px 20px 40px;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.modal-header h3 {
  margin: 0;
  font-size: 18px;
}

/* Action Grid */
.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.action-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  height: auto;
}

.action-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.action-card .icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.action-card span {
  font-weight: 600;
  color: var(--text);
}

.action-card:hover {
  background: #f1f5f9;
  border-color: var(--primary);
}

/* List Options */
.list-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 12px 0 24px;
}

.list-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: left;
  transition: all 0.2s;
  height: auto;
  width: 100%;
  position: relative;
}

.list-option:hover {
  border-color: var(--primary);
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.list-option:active {
  transform: scale(0.98);
}

.list-option .icon {
  background: #f1f5f9;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--primary);
}

.list-option .icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.list-option .text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.list-option strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 650;
}

.list-option small {
  color: var(--muted2);
  font-size: 13px;
  font-weight: 400;
}

.list-option::after {
  content: '→';
  position: absolute;
  right: 16px;
  color: var(--muted2);
  font-weight: bold;
  opacity: 0.5;
}

/* Upload Animation */
.upload-animation {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.upload-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  animation: spin 1s linear infinite;
}

.upload-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
}

.success-icon {
  font-size: 64px;
  margin-bottom: 16px;
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Helper Text */
.helper-text {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
  text-align: center;
  font-weight: 500;
}

/* Camera Actions */
.camera-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.circle-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid rgba(255, 255, 255, 0.3);
  padding: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.modal-content.full-screen {
  padding: 0;
  border-radius: 0;
  max-width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
}
