/* Panel admin NexaFans */

body {
  background: #0a0708;
}

.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
}

/* ─── Sidebar ─── */
.sidebar {
  background: var(--bg-1);
  border-right: 1px solid var(--bg-2);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sb-head {
  margin-bottom: 22px;
}

.sb-head .brand-mark {
  font-size: 22px;
  display: block;
}

.sb-head .sub {
  font-size: 11px;
  color: var(--text-mute);
  margin-top: 2px;
}

.sb-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-mute);
  letter-spacing: 1.5px;
  margin: 18px 0 8px;
}

.sb-item {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 3px;
  font-size: 13px;
  color: #d5c3b3;
  cursor: pointer;
  text-decoration: none;
}

.sb-item:hover { background: var(--bg-2); }

.sb-item.active {
  background: linear-gradient(135deg, rgba(200, 122, 133, 0.18), rgba(212, 175, 134, 0.12));
  color: var(--text);
  border-left: 3px solid var(--coral);
  padding-left: 7px;
}

.sb-item .av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
  color: #fff;
  background: var(--grad-warm);
}

.sb-item .ic {
  width: 22px;
  margin-right: 8px;
  opacity: 0.7;
}

.sb-sep {
  height: 1px;
  background: var(--bg-2);
  margin: 14px 0;
}

.sb-logout {
  margin-top: auto;
  font-size: 12px;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  background: var(--bg-2);
  color: var(--text-mute);
  text-decoration: none;
}
.sb-logout:hover { color: var(--coral-light); }

/* ─── Main ─── */
.main {
  padding: 22px 30px;
  overflow-y: auto;
}

.main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-2);
}

.main-head h3 {
  font-size: 22px;
  margin: 0 0 4px;
  color: var(--text);
  font-weight: 600;
}

.main-head .meta {
  font-size: 12px;
  color: var(--text-mute);
}

.head-actions {
  display: flex;
  gap: 8px;
}

.btn-admin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.btn-admin.ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--bg-2);
}
.btn-admin.ghost:hover { background: var(--bg-1); }

.btn-admin.primary {
  background: var(--grad-cta);
  color: #2a1218;
}

.btn-admin.danger {
  background: var(--bg-2);
  color: var(--danger);
}

/* Week nav */
.week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-1);
  border: 1px solid var(--bg-2);
  border-radius: 10px;
  padding: 11px 16px;
  margin-bottom: 18px;
}

.week-nav .arrow {
  color: var(--gold);
  cursor: pointer;
  font-size: 13px;
  background: none;
  border: none;
  font-family: inherit;
}

.week-nav .center .big {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.week-nav .center .small {
  font-size: 11px;
  color: var(--text-mute);
  text-align: center;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card {
  background: var(--bg-1);
  border: 1px solid var(--bg-2);
  border-radius: 10px;
  padding: 12px 14px;
}

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-mute);
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.stat-value .of {
  font-size: 13px;
  color: var(--text-mute);
  font-family: -apple-system, system-ui, sans-serif;
  font-weight: 400;
}

.stat-value.green { color: var(--gold); }

/* Accordion de secciones */
.sec-list { display: flex; flex-direction: column; gap: 10px; }

.sec-row {
  background: var(--bg-1);
  border: 1px solid var(--bg-2);
  border-radius: 10px;
  overflow: hidden;
}

.sec-head {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  cursor: pointer;
  user-select: none;
}

.sec-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 14px;
}

.sec-info { flex: 1; }
.sec-name { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.sec-meta { font-size: 11px; color: var(--text-mute); display: flex; gap: 14px; }
.sec-meta span::before { content: '•'; margin-right: 6px; color: var(--text-dim); }
.sec-meta span:first-child::before { display: none; }
.sec-progress {
  margin-right: 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}
.sec-toggle { color: var(--text-dim); font-size: 16px; transition: transform 0.2s; }
.sec-row.open .sec-toggle { transform: rotate(90deg); }

.sec-body {
  padding: 0 18px 16px;
  border-top: 1px solid var(--bg-2);
  margin-top: 4px;
  padding-top: 14px;
  display: none;
}
.sec-row.open .sec-body { display: block; }

.form-row { margin-bottom: 14px; }
.form-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-mute);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-input,
.form-textarea {
  background: var(--bg-0);
  border: 1px solid var(--bg-2);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 13px;
  width: 100%;
  font-family: inherit;
  outline: none;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--coral); }

.form-textarea { min-height: 80px; resize: vertical; line-height: 1.5; }

.qty-row { display: flex; gap: 10px; align-items: center; }
.qty-row .form-input { width: 90px; }
.qty-row .hint { font-size: 12px; color: var(--text-mute); }

.ai-btn {
  font-size: 11px;
  background: var(--grad-cta);
  color: #2a1218;
  padding: 4px 9px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.ai-btn:disabled { opacity: 0.5; cursor: wait; }

.info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--gold);
  border: none;
  font-size: 11px;
  font-weight: 700;
  cursor: help;
  font-family: inherit;
  margin-left: 6px;
  vertical-align: middle;
  transition: background 0.15s, color 0.15s;
  text-transform: none;
}
.info-btn:hover {
  background: var(--gold);
  color: #2a1218;
}

.help-body {
  font-size: 13px;
  line-height: 1.55;
  color: #d5c3b3;
}
.help-body p { margin: 0 0 10px; }
.help-body p:last-child { margin-bottom: 0; }
.help-body strong { color: var(--text); }
.help-body em { color: var(--gold); font-style: normal; font-weight: 600; }
.help-body ul {
  margin: 6px 0 10px;
  padding-left: 20px;
}
.help-body li {
  margin-bottom: 4px;
  color: #d5c3b3;
}
.help-body .muted {
  color: var(--text-mute);
  font-size: 12px;
  padding-top: 8px;
  border-top: 1px dashed var(--bg-2);
  margin-top: 12px;
}

.tip-row-admin {
  display: flex;
  align-items: center;
  background: var(--bg-0);
  border: 1px solid var(--bg-2);
  border-radius: 8px;
  padding: 7px 10px 7px 8px;
  font-size: 13px;
  color: #d5c3b3;
  margin-bottom: 5px;
}
.tip-row-admin .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad-cta);
  margin-right: 8px;
  flex-shrink: 0;
}
.tip-row-admin .tip-text {
  flex: 1;
  background: transparent;
  border: none;
  color: inherit;
  outline: none;
  font-family: inherit;
  font-size: 13px;
}
.tip-row-admin .x {
  color: var(--text-dim);
  font-size: 16px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 4px;
}

.add-mini {
  background: transparent;
  border: 1px dashed var(--text-dim);
  color: var(--text-mute);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  margin-top: 3px;
}
.add-mini:hover { color: var(--gold); border-color: var(--gold); }

.ex-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ex-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  align-items: stretch;
  background: var(--bg-1);
  border: 1px solid var(--bg-2);
  border-radius: 8px;
  padding: 8px;
}
.ex-row .ex-thumb {
  aspect-ratio: 9 / 16;
  max-height: 160px;
  width: 90px;
}
.ex-note-box {
  display: flex;
  flex-direction: column;
}
.ex-note {
  width: 100%;
  min-height: 80px;
  resize: vertical;
  background: var(--bg-0, #150a0d);
  color: var(--text);
  border: 1px solid var(--bg-2);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  font-family: inherit;
  line-height: 1.4;
  box-sizing: border-box;
}
.ex-note:focus {
  outline: none;
  border-color: var(--coral-light, #e89c6e);
}
/* El "+" para añadir vuelve a ser un thumb suelto debajo de la lista */
.ex-grid > .ex-thumb.add {
  width: 90px;
  align-self: flex-start;
  aspect-ratio: 9 / 16;
  max-height: 160px;
}

.ex-thumb {
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--bg-2);
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 4px;
  background-size: cover;
  background-position: center;
}
.ex-thumb .lbl {
  font-size: 9px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold);
  padding: 2px 5px;
  border-radius: 4px;
  z-index: 1;
}
.ex-thumb .x {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 10px;
  cursor: pointer;
  border: none;
}
.ex-thumb.add {
  background: transparent;
  border: 1px dashed var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 20px;
  cursor: pointer;
}

.pdf-mini {
  display: flex;
  align-items: center;
  background: var(--bg-0);
  border: 1px solid var(--coral);
  border-radius: 8px;
  padding: 10px;
  gap: 10px;
  margin-top: 4px;
}
.pdf-mini .ic {
  width: 32px; height: 40px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
}
.pdf-mini .info { flex: 1; font-size: 13px; }
.pdf-mini .info .meta { color: var(--text-mute); font-size: 11px; }
.pdf-mini .x { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 16px; }

/* Modal */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}
.modal {
  background: var(--bg-1);
  border: 1px solid var(--bg-2);
  border-radius: 14px;
  padding: 22px;
  width: 100%;
  max-width: 440px;
}
.modal h4 { margin: 0 0 14px; font-size: 18px; }
.modal .field { margin-bottom: 12px; }
.modal .actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 16px;
}

/* Tabla usuarios */
table.users {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-1);
  border: 1px solid var(--bg-2);
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
}
table.users th, table.users td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--bg-2);
}
table.users th {
  background: var(--bg-3);
  color: var(--text-mute);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
table.users tr:last-child td { border-bottom: none; }

/* Login admin */
.admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.admin-login .login-box {
  background: var(--bg-1);
  border: 1px solid var(--bg-2);
  padding: 36px;
  border-radius: 14px;
  width: 360px;
}
.admin-login .login-box .brand-mark {
  font-size: 38px;
  text-align: center;
  display: block;
  margin-bottom: 4px;
}
.admin-login .login-box .tag {
  text-align: center;
  color: var(--text-mute);
  font-size: 12px;
  margin-bottom: 24px;
}

/* ─── Mobile menu button ─── */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 30;
  width: 40px;
  height: 40px;
  background: var(--bg-1);
  border: 1px solid var(--bg-2);
  border-radius: 10px;
  color: var(--gold);
  font-size: 20px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 19;
  opacity: 0;
  transition: opacity 0.18s;
}
.sidebar-overlay.open {
  display: block;
  opacity: 1;
}

/* ─── Dashboard ─── */
.pay-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(212,175,134,0.12) 0%, rgba(199,154,110,0.08) 100%);
  border: 1px solid var(--gold);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.pay-banner-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.pay-banner-body strong {
  color: var(--text);
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}
.pay-banner-body .muted {
  font-size: 12px;
}

.dash-model-card {
  background: var(--bg-1);
  border: 1px solid var(--bg-2);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.dash-model-card.payable {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212,175,134,0.2), 0 4px 16px rgba(212,175,134,0.08);
}

.dash-model-head {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.dash-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-warm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px;
  margin-right: 12px;
  flex-shrink: 0;
}

.dash-model-name {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dash-percent {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
}
.dash-model-card.payable .dash-percent {
  color: var(--gold-soft);
}

.status-chip {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 8px;
  font-weight: 700;
}
.status-chip.pay {
  background: var(--gold);
  color: #2a1218;
}
.status-chip.review {
  background: rgba(232, 159, 170, 0.18);
  color: var(--coral-light);
}
.status-chip.pend {
  background: rgba(212, 175, 134, 0.15);
  color: var(--gold);
}
.status-chip.draft {
  background: rgba(169, 148, 136, 0.15);
  color: var(--text-mute);
}

.dash-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.dash-bar .ic {
  width: 22px;
  font-size: 14px;
  text-align: center;
  flex-shrink: 0;
}
.dash-bar .name {
  width: 90px;
  color: #d5c3b3;
  flex-shrink: 0;
}
.dash-bar .bar {
  flex: 1;
  height: 7px;
  background: var(--bg-2);
  border-radius: 4px;
  overflow: hidden;
}
.dash-bar .bar > div {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s;
}
.f-low      { background: var(--coral-dark); }
.f-mid      { background: var(--coral); }
.f-hi       { background: linear-gradient(90deg, var(--coral), var(--gold)); }
.f-full     { background: linear-gradient(90deg, var(--gold), var(--gold-deep)); }
.f-approved { background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft)); box-shadow: 0 0 6px rgba(244,211,181,0.4); }

.dash-bar .num {
  width: 56px;
  text-align: right;
  color: var(--text-mute);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.dash-bar .num-ok  { color: var(--gold); }
.dash-bar .num-app { color: var(--gold-soft); font-weight: 700; }
.dash-bar .ck { color: var(--gold-soft); }

/* ─── RESPONSIVE MÓVIL (≤ 768px) ─── */
@media (max-width: 768px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 260px;
    height: 100vh;
    z-index: 20;
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    box-shadow: 8px 0 24px rgba(0,0,0,0.5);
  }
  .sidebar.open {
    transform: translateX(0);
  }

  .main {
    padding: 64px 14px 24px;
  }

  .main-head {
    flex-wrap: wrap;
    gap: 12px;
  }
  .main-head h3 {
    font-size: 19px;
  }

  .head-actions {
    flex-wrap: wrap;
    width: 100%;
  }
  .head-actions .btn-admin {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    padding: 8px 10px;
  }

  .week-nav {
    padding: 10px 12px;
  }
  .week-nav .arrow {
    font-size: 11px;
  }
  .week-nav .center .big {
    font-size: 17px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .stat-card {
    padding: 10px 12px;
  }
  .stat-value {
    font-size: 22px;
  }

  .sec-head {
    padding: 11px 14px;
  }
  .sec-info { min-width: 0; }
  .sec-meta { font-size: 10px; gap: 8px; flex-wrap: wrap; }
  .sec-progress { font-size: 14px; margin-right: 10px; }

  .ex-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Dashboard ajustes móvil */
  .dash-bar .name {
    width: 76px;
    font-size: 11px;
  }
  .dash-bar .num {
    width: 50px;
    font-size: 11px;
  }
  .pay-banner {
    padding: 12px 14px;
  }
  .pay-banner-icon {
    font-size: 26px;
  }

  table.users {
    font-size: 11px;
  }
  table.users th, table.users td {
    padding: 8px 8px;
  }
}

/* Iconos */
.ic-bg-reels { background: linear-gradient(135deg, #c87a85, #a85a6a); }
.ic-bg-of_stories { background: linear-gradient(135deg, #d4af86, #b8916a); }
.ic-bg-of_posts { background: linear-gradient(135deg, #e89faa, #c87a85); }
.ic-bg-ig_foto { background: linear-gradient(135deg, #f4d3b5, #d4af86); }
.ic-bg-ig_stories { background: linear-gradient(135deg, #c79a6e, #8b6843); }
.ic-bg-customs { background: linear-gradient(135deg, #e8c560, #a8862c); }
.ic-bg-sexting { background: linear-gradient(135deg, #b66572, #8b3f50); }
.ic-bg-extras { background: linear-gradient(135deg, #a99488, #75645a); }

/* Notif pill host en sidebar admin */
.sb-notif-host { padding: 6px 14px 4px; display: flex; }
.sb-notif-host .np-pill { width: 100%; justify-content: center; }

/* Upload review cards */
.uploads-list { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.upload-card { background: var(--bg-1); border: 1px solid var(--bg-2); border-radius: 10px; padding: 10px 12px; display: flex; gap: 12px; align-items: flex-start; }
.upload-card.approved { border-color: rgba(120, 200, 120, .4); }
.upload-card.rejected { border-color: rgba(220, 90, 90, .4); }
.upload-card .up-info { flex: 1; min-width: 0; }
.up-preview { flex-shrink: 0; }
.up-preview.img { width: 120px; height: 120px; border-radius: 8px; object-fit: cover; cursor: zoom-in; background: var(--bg-2); }
.up-preview.video { width: 200px; max-height: 200px; border-radius: 8px; background: #000; }
.up-preview.audio { width: 240px; }
.up-no-preview { width: 120px; height: 120px; border-radius: 8px; background: var(--bg-2); display: flex; align-items: center; justify-content: center; color: var(--text-mute); font-size: 28px; flex-shrink: 0; }
.up-row1 { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.up-name { font-size: 13px; color: var(--text); font-family: monospace; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.up-meta { font-size: 11px; color: var(--text-mute); margin-top: 2px; }
.up-tg { color: var(--coral-light); text-decoration: none; }
.up-tg:hover { text-decoration: underline; }
.up-badge { font-size: 11px; padding: 2px 8px; border-radius: 8px; white-space: nowrap; }
.up-badge.up-ok { background: rgba(120, 200, 120, .15); color: #7cd07c; }
.up-badge.up-bad { background: rgba(220, 90, 90, .15); color: #e88080; }
.up-badge.up-pending { background: rgba(230, 200, 100, .15); color: #e0c060; }
.up-notes { margin-top: 6px; padding: 6px 8px; background: rgba(220, 90, 90, .08); border-left: 2px solid rgba(220, 90, 90, .5); border-radius: 4px; font-size: 12px; color: #e88; }
.up-actions { display: flex; gap: 6px; margin-top: 8px; justify-content: flex-end; }
.approve-set-bar { display: flex; justify-content: flex-end; margin-bottom: 8px; }
.approve-set-bar .btn-admin { font-weight: 600; }
@media (max-width: 600px) {
  .upload-card { flex-direction: column; }
  .up-preview.img, .up-no-preview { width: 100%; height: 200px; }
  .up-preview.video { width: 100%; max-height: 240px; }
  .up-preview.audio { width: 100%; }
}
