/*
==========================================================
Timbrador PDF
CSS Global
Arquitectura Mobile First
==========================================================
*/

/* =======================================================
   Variables
======================================================= */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;

  --background: #f8fafc;
  --surface: #ffffff;

  --text: #0f172a;
  --text-light: #64748b;

  --border: #e2e8f0;

  --success: #22c55e;
  --danger: #ef4444;

  --radius: 18px;

  --shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  --shadow-header: 0 8px 24px rgba(15, 23, 42, 0.08);

  --transition: 0.25s ease;

  --max-width: 1200px;
}

/* =======================================================
   Dark Mode preparado
======================================================= */

[data-theme="dark"] {
  --background: #0f172a;
  --surface: #1e293b;
  --text: #f8fafc;
  --text-light: #cbd5e1;
  --border: #334155;
}

/* =======================================================
   Reset
======================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

/* =======================================================
   Layout
======================================================= */

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  width: min(100%, var(--max-width));
  margin: auto;
  padding: 24px;
  flex: 1;
}

/* =======================================================
   Header
======================================================= */

.site-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 18px 20px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-header);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 30px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.brand-text small {
  color: var(--text-light);
  font-size: 0.95rem;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  overflow-x: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  scrollbar-width: none;
}

.top-nav::-webkit-scrollbar {
  display: none;
}

.top-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 12px 10px;
  white-space: nowrap;
  transition: var(--transition);
}

.top-nav a:hover {
  color: var(--primary);
}

.top-nav a:first-child {
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
}

.top-nav .nav-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 10px 14px;
  margin-bottom: 8px;
}

.top-nav .nav-pro::before {
  content: "♛";
  margin-right: 7px;
  font-size: 0.95rem;
}

/* =======================================================
   Hero
======================================================= */

.hero {
  text-align: center;
  padding: 65px 0 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.hero-badge span {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2rem, 10vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 720px;
  margin: auto;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* =======================================================
   Botones
======================================================= */

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 35px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 18px;
  border-radius: 16px;
  font-weight: 800;
  transition: var(--transition);
  min-height: 56px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-primary::before {
  content: "G";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  color: #4285f4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary::before {
  content: "☰";
  color: var(--primary);
  font-size: 1.2rem;
}

.btn-whatsapp {
  background: #22c55e;
  border: 1px solid #16a34a;
  color: #fff;
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.btn-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

/* =======================================================
   Vista previa teléfono
======================================================= */

.hero-card {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.phone-preview {
  width: 280px;
  background: #111827;
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 90px;
  height: 8px;
  background: #374151;
  border-radius: 999px;
  margin: auto auto 18px;
}

.preview-paper {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  aspect-ratio: 8.5 / 11;
}

.preview-logo {
  width: 70px;
  height: 24px;
  background: #2563eb;
  border-radius: 6px;
}

.preview-lines span {
  display: block;
  height: 8px;
  background: #cbd5e1;
  margin-top: 10px;
  border-radius: 5px;
}

.preview-lines span:last-child {
  width: 70%;
}

.preview-qr {
  width: 72px;
  height: 72px;
  background: #111827;
  margin-top: 28px;
}

.preview-footer {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 10px;
  background: #d1d5db;
}

.preview-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: rgba(15, 23, 42, 0.08);
  transform: rotate(-35deg);
  font-weight: 700;
}

/* =======================================================
   Secciones
======================================================= */

.section {
  margin-top: 80px;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading span {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.section-heading p {
  color: var(--text-light);
  margin-top: 12px;
}

/* =======================================================
   Tarjetas
======================================================= */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #dbeafe;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
}

/* =======================================================
   CTA
======================================================= */

.cta-card {
  background: linear-gradient(135deg, #f0fdf4, #eff6ff);
  color: var(--text);
  padding: 32px 24px;
  border-radius: 28px;
  border: 1px solid #bbf7d0;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-card span {
  display: inline-flex;
  width: fit-content;
  margin: 0 auto;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
  color: #16a34a;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
}

.cta-card h2 {
  margin: 18px 0;
}

.cta-card p {
  max-width: 700px;
  margin: auto;
  color: var(--text-light);
}

.cta-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.cta-actions .btn {
  width: 100%;
  max-width: 360px;
}

.cta-note {
  margin-top: 18px;
  font-size: 0.95rem;
  opacity: 0.95;
}

/* =======================================================
   Páginas de error
======================================================= */

.error-page {
  min-height: calc(100vh - 210px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}

.error-card {
  width: 100%;
  max-width: 560px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 36px 24px;
  text-align: center;
  animation: fadeInUp 0.35s ease both;
}

.error-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 54px;
  padding: 0 22px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.error-card h1 {
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.error-card p {
  color: var(--text-light);
  max-width: 440px;
  margin: 0 auto;
}

.error-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* =======================================================
   Animaciones
======================================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =======================================================
   Footer
======================================================= */

.site-footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
}

.site-footer strong {
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}

/* =======================================================
   Tablets
======================================================= */

@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    padding: 18px 28px;
  }

  .top-nav {
    width: auto;
    border-top: 0;
    padding-top: 0;
    gap: 14px;
  }

  .top-nav a {
    padding: 10px 14px;
  }

  .top-nav a:first-child {
    border-bottom: 3px solid var(--primary);
    border-radius: 0;
  }

  .top-nav .nav-pro {
    margin-bottom: 0;
    padding: 10px 18px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .error-card {
    padding: 48px;
  }

  .error-actions {
    flex-direction: row;
    justify-content: center;
  }

  .cta-card {
    padding: 45px;
  }
}

/* =======================================================
   Desktop
======================================================= */

@media (min-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =======================================================
   Dashboard
======================================================= */

.dashboard-section,
.new-document-section {
  padding: 40px 0 70px;
}

.dashboard-container,
.new-document-container {
  width: min(100%, 1000px);
  margin: auto;
}

.dashboard-header,
.new-document-header {
  margin-bottom: 35px;
}

.dashboard-label,
.new-document-label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--primary);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.dashboard-header h1,
.new-document-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.dashboard-header p,
.new-document-header p {
  color: var(--text-light);
  max-width: 700px;
}

.dashboard-grid {
  display: grid;
  gap: 24px;
}

.dashboard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.dashboard-card:hover {
  transform: translateY(-5px);
}

.dashboard-card-primary {
  border: 2px solid var(--primary);
}

.dashboard-card-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.dashboard-card h2 {
  margin-bottom: 12px;
}

.dashboard-card p {
  color: var(--text-light);
}

.dashboard-button,
.upload-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 15px 22px;
  margin-top: 22px;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
}

.dashboard-button:hover,
.upload-button:hover {
  background: var(--primary-dark);
}

/* =======================================================
   Subida de PDF
======================================================= */

.upload-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px dashed #cbd5e1;
  border-radius: 20px;
  padding: 55px 25px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.upload-box:hover {
  border-color: var(--primary);
  background: #f8fbff;
}

.upload-icon {
  font-size: 4rem;
  margin-bottom: 15px;
}

.upload-box h2 {
  margin-bottom: 10px;
}

.upload-box p {
  color: var(--text-light);
}

.file-name {
  margin-top: 18px;
  font-weight: 700;
  color: var(--primary);
  word-break: break-word;
}

.back-link {
  display: inline-block;
  margin-top: 22px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}

.back-link:hover {
  text-decoration: underline;
}

/* =======================================================
   Responsive
======================================================= */

@media (min-width:768px){

  .dashboard-grid{
      grid-template-columns:repeat(3,1fr);
  }

  .upload-card{
      padding:40px;
  }

}

/* =======================================================
   Ajuste compacto del editor PDF
======================================================= */

.new-document-section {
  padding-top: 10px;
}

.new-document-header {
  margin-bottom: 22px;
}

.new-document-header h1 {
  margin-bottom: 8px;
}

.upload-card {
  margin-top: 18px;
}

#pdf-viewer-wrap {
  padding: 10px !important;
}

@media (min-width: 768px) {
  .new-document-section {
    padding-top: 8px;
  }
}

/* === DASHBOARD MINIMAL IA MODE === */

.dashboard-minimal,
.dashboard-home {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 18px;
}

.dashboard-minimal-container,
.dashboard-shell {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.dashboard-minimal-header,
.dashboard-shell {
    animation: dashboardFadeUp 0.35s ease both;
}

.dashboard-label,
.dashboard-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef4ff;
    color: #2557d6;
    font-size: 0.85rem;
    font-weight: 800;
}

.dashboard-badge span,
.dashboard-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2f66f5;
    box-shadow: 0 0 0 5px rgba(47, 102, 245, 0.12);
}

.dashboard-minimal h1,
.dashboard-shell h1 {
    margin: 0;
    color: #10182f;
    font-size: clamp(2rem, 6vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.dashboard-minimal p,
.dashboard-subtitle {
    margin: 14px auto 0;
    max-width: 520px;
    color: #5d6f91;
    font-size: 1.02rem;
    line-height: 1.6;
}

.dashboard-minimal-grid,
.dashboard-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.dashboard-minimal-card,
.dashboard-action {
    min-height: 190px;
    padding: 26px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #dde6f5;
    box-shadow: 0 20px 60px rgba(26, 45, 86, 0.10);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dashboard-minimal-card:hover,
.dashboard-action:hover {
    transform: translateY(-4px);
    border-color: #2f66f5;
    box-shadow: 0 24px 70px rgba(47, 102, 245, 0.16);
}

.dashboard-card-primary,
.dashboard-action-primary {
    border: 2px solid #2f66f5;
}

.dashboard-card-icon,
.dashboard-action-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #eef4ff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.dashboard-minimal-card h2,
.dashboard-action strong {
    margin: 0;
    color: #10182f;
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 900;
}

.dashboard-minimal-card p,
.dashboard-action span {
    margin-top: 10px;
    color: #5d6f91;
    font-size: 0.98rem;
    line-height: 1.5;
}

.dashboard-note {
    margin-top: 26px !important;
    font-size: 0.9rem !important;
    color: #71809d !important;
}

@keyframes dashboardFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 720px) {
    .dashboard-minimal,
    .dashboard-home {
        align-items: flex-start;
        padding-top: 34px;
    }

    .dashboard-minimal-grid,
    .dashboard-actions {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 28px;
    }

    .dashboard-minimal-card,
    .dashboard-action {
        min-height: 150px;
        border-radius: 24px;
        padding: 16px;
    }

    .dashboard-card-icon,
    .dashboard-action-icon {
        width: 50px;
        height: 50px;
        font-size: 1.55rem;
        margin-bottom: 16px;
    }
}



/* =======================================================
   BOTÓN GOOGLE
======================================================= */

.btn-google{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    background:#ffffff;

    color:#222;

    border:1px solid #d9d9d9;

    border-radius:18px;

    padding:15px 34px;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    box-shadow:
        0 10px 28px rgba(0,0,0,.08);

    transition:
        all .22s ease;
}


.btn-google::before{

    content:"G";

    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:white;

    border-radius:50%;

    font-weight:900;

    color:#4285F4;

    border:1px solid #ececec;

    flex-shrink:0;

}


.btn-google:hover{

    transform:translateY(-2px);

    box-shadow:
        0 18px 34px rgba(0,0,0,.12);

    border-color:#b8b8b8;

}


.btn-google:active{

    transform:scale(.98);

}



/* === SUBIR PDF AUTO IA MODE === */

.new-document-section {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 18px 30px;
}

.new-document-container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.new-document-header {
    text-align: center;
    margin-bottom: 12px;
}

.new-document-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 999px;
    background: #eef4ff;
    color: #2557d6;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.new-document-header h1 {
    margin: 0;
    color: #10182f;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.new-document-header p {
    max-width: 460px;
    margin: 14px auto 0;
    color: #5d6f91;
    font-size: 1rem;
    line-height: 1.55;
}

.upload-card {
    background: #ffffff;
    border: 1px solid #dfe7f5;
    border-radius: 30px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(26, 45, 86, 0.10);
}

.upload-box {
    min-height: 220px;
    border: 2px dashed #c8d5ea;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    text-align: center;
    cursor: pointer;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.upload-box:hover {
    border-color: #2f66f5;
    background: #f6f9ff;
    transform: translateY(-2px);
}

.upload-icon {
    width: 54px;
    height: 54px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: #eef4ff;
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.upload-box h2 {
    margin: 0;
    color: #10182f;
    font-size: 1.25rem;
}

.upload-box p {
    margin: 0;
    color: #5d6f91;
    font-size: 0.98rem;
}

.file-name {
    margin-top: 8px;
    color: #2557d6;
    font-size: 0.92rem;
    font-weight: 800;
}

.upload-button-hidden {
    display: none !important;
}

.back-link {
    display: inline-flex;
    margin-top: 18px;
    color: #5d6f91;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.back-link:hover {
    color: #2557d6;
}

@media (max-width: 720px) {
    .new-document-section {
        align-items: flex-start;
        padding-top: 30px;
    }

    .upload-card {
        padding: 14px;
        border-radius: 24px;
    }

    .upload-box {
        min-height: 250px;
        border-radius: 22px;
        padding: 24px 14px;
    }

    .upload-icon {
        width: 58px;
        height: 58px;
        font-size: 2rem;
    }
}



/* === DRAG DROP PDF IA MODE === */

.upload-box.is-dragging {
    border-color: #2f66f5;
    background: #eef4ff;
    transform: translateY(-2px) scale(1.01);
    box-shadow: inset 0 0 0 2px rgba(47, 102, 245, 0.10);
}

.upload-box.is-loading {
    pointer-events: none;
    opacity: 0.78;
}

.upload-box.is-loading .upload-icon {
    animation: uploadPulse 0.9s ease-in-out infinite alternate;
}

.upload-box.is-error {
    border-color: #ef4444;
    background: #fff5f5;
}

.upload-box.is-error .file-name {
    color: #dc2626;
}

@keyframes uploadPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

