/* ==========================================================================
   XAVOR DARK LUXURY THEME
   Inspired by xavor.com design system:
   Deep Obsidian Black, Matte Charcoal, Xavor Gold (#FFB800), and Glassmorphism.
   ========================================================================== */

:root {
  /* Xavor Dark Luxury Palette */
  --bg: #070709;
  --surface: #0f1115;
  --surface-2: #16181f;
  --surface-3: #1f232b;
  --border: rgba(255, 255, 255, 0.08);
  --border-focus: #ffb800;

  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Xavor Signature Gold */
  --accent: #ffb800;
  --accent-hover: #e0a200;
  --accent-text: #070709;
  --accent-soft: rgba(255, 184, 0, 0.12);
  --accent-glow: rgba(255, 184, 0, 0.28);

  /* Status Accents */
  --danger: #ff4d4f;
  --danger-hover: #f5222d;
  --danger-soft: rgba(255, 77, 79, 0.12);
  --ok: #10b981;
  --ok-soft: rgba(16, 185, 129, 0.12);

  /* Geometry & Shadows */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;

  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 2px 6px 0 rgba(0, 0, 0, 0.65);
  --shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.75);
  --shadow-lg: 0 16px 36px -6px rgba(0, 0, 0, 0.85);
  --shadow-xl: 0 24px 48px -8px rgba(0, 0, 0, 0.95);

  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--bg);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 184, 0, 0.08), transparent),
    radial-gradient(circle at 100% 100%, rgba(255, 184, 0, 0.03), transparent);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: #ffd043;
  text-decoration: none;
}

/* ---------- Icon SVG ---------- */
.icon-svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-folder {
  color: var(--accent);
}

/* ---------- App Shell & Topbar ---------- */
.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(15, 17, 21, 0.82);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.35);
  display: grid;
  place-items: center;
  box-shadow: 0 0 16px rgba(255, 184, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-mark:hover {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(255, 184, 0, 0.3);
}

.brand-logo-svg {
  width: 22px;
  height: 22px;
}

.brand h1 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #ffffff;
  background: linear-gradient(180deg, #ffffff 30%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spacer { flex: 1 1 auto; }

.user-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 24, 31, 0.85);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.user-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}
.user-name {
  font-weight: 600;
  color: #ffffff;
}

.btn-signout {
  font-size: 13px;
  padding: 7px 14px;
  background: rgba(22, 24, 31, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-signout:hover {
  background: var(--danger-soft);
  color: var(--danger);
  border-color: rgba(255, 77, 79, 0.4);
}

/* ---------- Main Container ---------- */
main {
  flex: 1;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 24px;
}

/* ---------- Panel & Explorer Header ---------- */
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(22, 24, 31, 0.6);
  flex-wrap: nowrap;
  min-height: 60px;
}

.crumbs-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 17, 21, 0.85);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 13px;
  overflow: hidden;
}
.crumbs button {
  background: none;
  border: none;
  padding: 2px 6px;
  font-weight: 500;
  color: var(--accent);
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.crumbs button:hover {
  background: var(--surface-3);
  color: #ffd043;
}
.crumbs .sep {
  color: var(--text-dim);
  font-size: 12px;
  flex-shrink: 0;
}
.crumbs .current {
  font-weight: 600;
  color: #ffffff;
  padding: 2px 6px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Search Bar */
.search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon {
  position: absolute;
  left: 11px;
  width: 15px;
  height: 15px;
  color: var(--text-dim);
  pointer-events: none;
}
.search-input {
  padding: 7px 12px 7px 32px;
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(15, 17, 21, 0.85);
  color: #ffffff;
  width: 170px;
  transition: all 0.2s ease;
}
.search-input:focus {
  outline: none;
  border-color: var(--accent);
  background: #0f1115;
  width: 230px;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

@media (max-width: 900px) {
  .search-input { width: 120px; }
  .search-input:focus { width: 160px; }
}

/* View Switcher */
.view-switch {
  display: flex;
  background: rgba(15, 17, 21, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px;
  margin: 0;
  min-inline-size: 0;
}
.view-btn {
  background: none;
  border: none;
  padding: 5px 8px;
  border-radius: 5px;
  color: var(--text-dim);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.15s ease;
}
.view-btn:hover {
  color: var(--text);
}
.view-btn.active {
  background: var(--surface-3);
  color: var(--accent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Buttons */
button {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  padding: 7px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
button:hover:not(:disabled) {
  background: var(--surface-3);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Xavor Luxury Gold Button */
button.primary {
  background: linear-gradient(135deg, #ffb800 0%, #e0a200 100%);
  border: 1px solid #ffb800;
  color: #070709;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(255, 184, 0, 0.25);
}
button.primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffd043 0%, #f5b000 100%);
  border-color: #ffd043;
  color: #070709;
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.4);
  transform: translateY(-1px);
}
button.primary:active:not(:disabled) {
  transform: translateY(0);
}

button.danger {
  color: var(--danger);
  border-color: transparent;
  background: transparent;
}
button.danger:hover:not(:disabled) {
  background: var(--danger-soft);
  border-color: rgba(255, 77, 79, 0.4);
}

button.btn-icon-only {
  padding: 7px;
}

/* ---------- Table View ---------- */
.table-scroll {
  overflow-x: auto;
  max-height: calc(100vh - 220px);
  min-height: 380px;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

thead {
  position: sticky;
  top: 0;
  background: rgba(15, 17, 21, 0.95);
  border-bottom: 1px solid var(--border);
  z-index: 10;
  backdrop-filter: blur(8px);
}

th {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  user-select: none;
}
th.sortable {
  cursor: pointer;
}
th.sortable:hover {
  color: var(--text);
}
th.right, td.right { text-align: right; }

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.12s ease;
}
tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

td {
  padding: 12px 16px;
  vertical-align: middle;
}

.item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
}
.item-link:hover {
  color: var(--accent);
  text-decoration: none;
}

.item-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.meta-col {
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-size: 12px;
}

.row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  opacity: 0.3;
  transition: opacity 0.15s ease;
}
tr:hover .row-actions {
  opacity: 1;
}

/* ---------- Grid View ---------- */
.grid-container {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  min-height: 380px;
}

.grid-card {
  background: rgba(22, 24, 31, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
}
.grid-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 184, 0, 0.4);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.8), 0 0 16px rgba(255, 184, 0, 0.12);
  background: rgba(31, 35, 43, 0.7);
}
.grid-card .card-icon {
  margin-bottom: 12px;
}
.grid-card .card-icon .icon-svg {
  width: 44px;
  height: 44px;
}
.grid-card .card-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 4px;
}
.grid-card .card-meta {
  font-size: 11px;
  color: var(--text-dim);
}
.grid-card .card-actions {
  display: flex;
  gap: 4px;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.grid-card:hover .card-actions {
  opacity: 1;
}

/* ---------- Empty State ---------- */
.empty {
  padding: 70px 20px;
  text-align: center;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.empty-icon {
  width: 54px;
  height: 54px;
  color: var(--text-dim);
  opacity: 0.5;
}
.empty-title {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
}

/* ---------- Summary Footer ---------- */
.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: rgba(22, 24, 31, 0.7);
  font-size: 12px;
  color: var(--text-dim);
}

/* ---------- Full-Screen Drag & Drop Overlay ---------- */
.drop-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 9, 0.82);
  backdrop-filter: blur(8px);
  border: 3px dashed var(--accent);
  z-index: 100;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.drop-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.drop-overlay-box {
  background: var(--surface);
  border: 1px solid rgba(255, 184, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px 56px;
  box-shadow: 0 0 32px rgba(255, 184, 0, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: scaleUp 0.2s ease-out;
}
.drop-overlay-box .icon-svg {
  width: 52px;
  height: 52px;
  color: var(--accent);
}

@keyframes scaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Floating Upload Progress Drawer ---------- */
.upload-drawer {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 400px;
  max-width: calc(100vw - 48px);
  background: var(--surface);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 20px rgba(0, 0, 0, 0.8);
  z-index: 90;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.upload-drawer.minimized .upload-drawer-body {
  display: none;
}
.upload-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  color: #ffffff;
}
.upload-drawer-body {
  max-height: 290px;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
}

.upload-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.upload-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.upload-name {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 230px;
  color: #ffffff;
}
.upload-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-variant-numeric: tabular-nums;
  font-size: 11px;
}
.upload-state {
  font-weight: 600;
  color: var(--accent);
}
.upload-state.ok { color: var(--ok); }
.upload-state.err { color: var(--danger); }

.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.15s ease-out;
}
.progress-fill.ok { background: var(--ok); }
.progress-fill.err { background: var(--danger); }
.progress-fill.transferring {
  background: linear-gradient(
    45deg,
    #ffb800 25%,
    #e0a200 25%,
    #e0a200 50%,
    #ffb800 50%,
    #ffb800 75%,
    #e0a200 75%,
    #e0a200 100%
  );
  background-size: 24px 24px;
  animation: progressStripes 1s linear infinite;
}

@keyframes progressStripes {
  0% { background-position: 0 0; }
  100% { background-position: 24px 0; }
}

.upload-stage {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 3px;
}

/* ==========================================================================
   LOGIN PAGE — LUXURY XAVOR DARK
   ========================================================================== */
.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background-color: #070709;
  background-image: 
    radial-gradient(ellipse 70% 45% at 50% 15%, rgba(255, 184, 0, 0.12), transparent),
    radial-gradient(circle at 100% 100%, rgba(255, 184, 0, 0.04), transparent);
  position: relative;
  overflow: hidden;
}

.login-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.4), transparent);
}

.login-card {
  width: 100%;
  max-width: 440px;
  background: rgba(15, 17, 21, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 184, 0, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 54px -12px rgba(0, 0, 0, 0.95), 0 0 30px rgba(255, 184, 0, 0.08);
  padding: 40px 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
}

.login-card .brand {
  justify-content: center;
  margin-bottom: 10px;
}
.login-card .brand-mark {
  width: 46px;
  height: 46px;
}
.login-card .brand-logo-svg {
  width: 28px;
  height: 28px;
}
.login-card .brand h1 {
  font-size: 22px;
  font-weight: 700;
}
.subtitle {
  color: var(--text-dim);
  font-size: 13.5px;
  text-align: center;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 20px;
  display: block;
}
.alert.error {
  background: rgba(255, 77, 79, 0.12);
  color: #ff7875;
  border: 1px solid rgba(255, 77, 79, 0.35);
  font-weight: 500;
}
.alert.ok {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.alert[hidden] {
  display: none !important;
}

.field { margin-bottom: 20px; }

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #e2e8f0;
}

.password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.password-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  padding: 5px;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.15s ease;
}
.password-toggle:hover { color: var(--accent); }

input[type="text"], input[type="password"], textarea {
  width: 100%;
  padding: 11px 15px;
  font: inherit;
  font-size: 14px;
  color: #ffffff;
  background: rgba(22, 24, 31, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: all 0.18s ease;
}
input::placeholder, textarea::placeholder {
  color: #475569;
}
input:focus, textarea:focus {
  outline: none;
  background: #16181f;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft), 0 0 12px rgba(255, 184, 0, 0.2);
}

textarea {
  min-height: 120px;
  font-family: var(--mono);
  font-size: 12px;
  resize: vertical;
}

button.block {
  width: 100%;
  padding: 12px;
  justify-content: center;
  font-size: 14px;
  margin-top: 8px;
}
button.link {
  background: none;
  border: none;
  color: var(--accent);
  padding: 0;
  font-weight: 500;
  cursor: pointer;
}
button.link:hover {
  color: #ffd043;
  text-decoration: underline;
}

/* ---------- Modals ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 100;
  animation: fadeIn 0.15s ease-out;
}
.modal {
  background: var(--surface);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95), 0 0 24px rgba(255, 184, 0, 0.15);
  padding: 26px;
  width: 100%;
  max-width: 440px;
  animation: scaleUp 0.18s ease-out;
}
.modal h2 { margin: 0 0 8px; font-size: 18px; color: #ffffff; }
.modal-msg { color: var(--text-muted); font-size: 14px; margin: 0 0 18px; }
.modal-input { margin-bottom: 12px; }
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

/* ---------- Toasts ---------- */
.toasts {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 120;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 17, 21, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 13.5px;
  animation: toastIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 280px;
}
.toast.ok {
  border-color: rgba(16, 185, 129, 0.4);
}
.toast.ok .toast-icon { color: var(--ok); }
.toast.error {
  border-color: rgba(255, 77, 79, 0.4);
}
.toast.error .toast-icon { color: var(--danger); }

@keyframes toastIn {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
