/* ==========================================================================
   FAZTOP - SPA Minimalist & Professional Design System
   Optimizado: Estructurado sin redundancias ni código duplicado
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --bg-dark: #080a10;
  --bg-card: #131622;
  --bg-card-hover: #181c2b;
  --bg-input: #0d0f17;
  --bg-panel: #121521;
  --bg-main: #0b0d15;

  --text-main: #f8fafc;
  --text-muted: #7e8b9b;
  --text-subtle: #525e6e;

  --primary: #0066ff;
  --primary-hover: #0052cc;
  --primary-light: rgba(0, 102, 255, 0.15);

  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.15);

  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.15);

  --danger: #ef4444;
  --danger-bg: rgba(239, 68, 68, 0.15);

  --info: #3b82f6;
  --info-bg: rgba(59, 130, 246, 0.15);

  --border-color: rgba(255, 255, 255, 0.07);
  --border-color-hover: rgba(255, 255, 255, 0.16);

  --mesh-glow-1: rgba(0, 102, 255, 0.15);
  --mesh-glow-2: rgba(99, 102, 241, 0.10);
  --mesh-glow-3: rgba(30, 58, 138, 0.12);
  --mesh-glow-4: rgba(14, 165, 233, 0.08);

  --btn-sec-bg: #1d212c;
  --btn-sec-hover: #272d3c;
  --btn-sec-text: #e2e8f0;

  --nav-active-bg: #171b29;
  --nav-active-border: rgba(255, 255, 255, 0.08);
  --nav-active-text: #ffffff;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);

  --panel-width: 500px;
}

[data-theme="light"] {
  --bg-dark: #f3f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-input: #f8fafc;
  --bg-panel: #ffffff;
  --bg-main: #edf2f7;

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;

  --primary: #0066ff;
  --primary-hover: #0052cc;
  --primary-light: rgba(0, 102, 255, 0.12);

  --success: #059669;
  --success-bg: rgba(5, 150, 105, 0.12);

  --warning: #d97706;
  --warning-bg: rgba(217, 119, 6, 0.12);

  --danger: #dc2626;
  --danger-bg: rgba(220, 38, 38, 0.12);

  --info: #2563eb;
  --info-bg: rgba(37, 99, 235, 0.12);

  --border-color: rgba(0, 0, 0, 0.08);
  --border-color-hover: rgba(0, 0, 0, 0.16);

  --mesh-glow-1: rgba(0, 102, 255, 0.09);
  --mesh-glow-2: rgba(99, 102, 241, 0.07);
  --mesh-glow-3: rgba(59, 130, 246, 0.07);
  --mesh-glow-4: rgba(14, 165, 233, 0.05);

  --btn-sec-bg: #e2e8f0;
  --btn-sec-hover: #cbd5e1;
  --btn-sec-text: #1e293b;

  --nav-active-bg: #ffffff;
  --nav-active-border: rgba(0, 102, 255, 0.2);
  --nav-active-text: #0066ff;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* --------------------------------------------------------------------------
   2. Reset & General Elements
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(at 10% 12%, var(--mesh-glow-1) 0px, transparent 55%),
    radial-gradient(at 85% 15%, var(--mesh-glow-2) 0px, transparent 50%),
    radial-gradient(at 45% 85%, var(--mesh-glow-3) 0px, transparent 55%),
    radial-gradient(at 90% 85%, var(--mesh-glow-4) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #334155; border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: #475569; }

/* --------------------------------------------------------------------------
   3. Auth / Login Layout
   -------------------------------------------------------------------------- */
.auth-container {
  min-height: 100vh;
  width: 100vw;
  background: radial-gradient(circle at center, #0e172a 0%, #070a12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.auth-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 860px;
}

.auth-card {
  width: 100%;
  background: #1b1e24;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-left-banner {
  width: 42%;
  min-width: 290px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.banner-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.banner-circle-top {
  width: 190px;
  height: 190px;
  top: -45px;
  right: -55px;
}

.banner-circle-bottom {
  width: 250px;
  height: 250px;
  bottom: -95px;
  left: -85px;
}

.auth-hero-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.auth-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  z-index: 1;
  letter-spacing: -0.02em;
}

.auth-hero-title span { color: rgba(255, 255, 255, 0.75); }

.auth-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.75rem;
  font-weight: 500;
  z-index: 1;
}

.auth-right-form {
  flex: 1;
  background: #1b1e24;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-right-form form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.auth-input-container { position: relative; width: 100%; }

.auth-input-field {
  width: 100%;
  height: 54px;
  background: #232730;
  border: 1.5px solid #2d3340;
  border-radius: 12px;
  padding: 0 1.25rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input-field::placeholder { color: #6b7280; }

.auth-input-field:focus {
  border-color: #0076f6;
  box-shadow: 0 0 0 3px rgba(0, 118, 246, 0.2);
}

.auth-right-form .btn-toggle-password {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 1.15rem;
  cursor: pointer;
  padding: 0.25rem;
}

.auth-right-form .btn-toggle-password:hover { color: #ffffff; }

.auth-right-form .form-remember-row {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.auth-right-form .checkbox-container {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: #9ca3af;
  cursor: pointer;
}

.auth-right-form .checkbox-container input[type="checkbox"] {
  accent-color: #0076f6;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  cursor: pointer;
}

.auth-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.btn-ingresar {
  background: #0076f6;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  padding: 0.75rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-ingresar:hover { background: #0064d1; }

.auth-external-footer {
  font-size: 0.82rem;
  color: #6b7280;
  text-align: center;
}

.auth-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border-color);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* --------------------------------------------------------------------------
   4. App Shell (Sidebar & Main Header)
   -------------------------------------------------------------------------- */
#app-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  background: var(--bg-dark);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}

.sidebar-header {
  padding: 1.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.sidebar-logo i { color: var(--primary); }

.sidebar-nav {
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1.1rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-item i {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-subtle);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.nav-item:hover {
  background: var(--bg-card-hover);
  color: var(--text-main);
}

.nav-item:hover i { color: var(--text-main); }

.nav-item.active {
  background: var(--nav-active-bg);
  border: 1px solid var(--nav-active-border);
  color: var(--nav-active-text);
  font-weight: 700;
}

.nav-item.active i {
  background: var(--primary-light);
  color: var(--primary);
}

.sidebar-footer {
  padding: 1.25rem;
  background: var(--bg-dark);
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.user-info { flex: 1; overflow: hidden; }

.user-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: capitalize;
}

.btn-logout-icon {
  background: var(--btn-sec-bg);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-logout-icon:hover {
  color: var(--danger);
  background: var(--danger-bg);
  border-color: rgba(239, 68, 68, 0.3);
}

.main-wrapper {
  margin-left: 250px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.topbar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 90;
}

.topbar-search-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  max-width: 850px;
}

.topbar-search-group .search-wrapper {
  position: relative;
  flex: 2;
  min-width: 240px;
}

.topbar-search-group .search-wrapper i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-subtle);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.topbar-search-group .search-wrapper input {
  padding-left: 2.75rem;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-size: 0.88rem;
  color: var(--text-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.topbar-search-group .search-wrapper input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.18);
}

.topbar-search-group .search-wrapper input:focus ~ i,
.topbar-search-group .search-wrapper:focus-within i {
  color: var(--primary);
}

.topbar-filter-desktop {
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  min-width: 155px;
  transition: border-color 0.2s ease;
}

.topbar-filter-desktop:hover {
  border-color: var(--border-color-hover);
}

.view-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  margin-top: 0.25rem;
}

.page-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.content-body {
  padding: 1rem 2rem 2.5rem 2rem;
  flex: 1;
}

/* --------------------------------------------------------------------------
   5. Reusable Buttons & Icon Utility System
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover { background-color: var(--primary-hover); }

.btn-secondary {
  background-color: var(--btn-sec-bg);
  color: var(--btn-sec-text);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--btn-sec-hover);
  color: var(--text-main);
}

.btn-danger {
  background-color: var(--danger-bg);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  background-color: var(--danger);
  color: #fff;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
}

.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--btn-sec-bg);
  border: 1px solid var(--border-color);
  color: var(--btn-sec-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn-icon:hover {
  background: var(--btn-sec-hover);
  color: var(--text-main);
  border-color: var(--border-color-hover);
}

.btn-icon.danger:hover {
  background: var(--danger-bg);
  color: var(--danger);
  border-color: var(--danger);
}

.btn-close-panel {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--btn-sec-bg);
  border: 1px solid var(--border-color);
  color: var(--btn-sec-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.05rem;
  transition: all 0.2s ease;
}

.btn-close-panel:hover {
  background: var(--btn-sec-hover);
  color: var(--text-main);
}

/* --------------------------------------------------------------------------
   6. Form Controls
   -------------------------------------------------------------------------- */
.form-group { margin-bottom: 1.15rem; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-control, .form-select {
  width: 100%;
  padding: 0.72rem 1.15rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.88rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.18);
}

.form-control::placeholder { color: var(--text-subtle); }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   7. Dashboard Stat Cards
   -------------------------------------------------------------------------- */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.stat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.stat-value {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--primary-light);
  border: 1px solid var(--border-color);
}

.stat-icon.primary { color: #0066ff; background: rgba(0, 102, 255, 0.12); }
.stat-icon.warning { color: #f59e0b; background: rgba(245, 158, 11, 0.12); }
.stat-icon.success { color: #10b981; background: rgba(16, 185, 129, 0.12); }
.stat-icon.danger { color: #ef4444; background: rgba(239, 68, 68, 0.12); }
.stat-icon.info { color: #3b82f6; background: rgba(59, 130, 246, 0.12); }

/* --------------------------------------------------------------------------
   8. Items / Claims Component System
   -------------------------------------------------------------------------- */
.items-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.item-row {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.item-row:hover {
  border-color: var(--border-color-hover);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.item-left-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 220px;
}

.item-circle-badge {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-main);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.item-text-stack {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.item-title-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.item-sub-info {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.item-meta-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.item-meta-sub i {
  font-size: 0.72rem;
  color: var(--text-subtle);
}

/* FOCAL POINT #1: Descripción Destacada como Píldora/Botón Principal */
.item-desc-pill {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  border: 1.5px solid rgba(0, 102, 255, 0.3);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.12);
}

.item-desc-pill i {
  font-size: 0.95rem;
  color: var(--primary);
  flex-shrink: 0;
}

.item-desc-pill span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-center-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.item-predio-sub, .item-date-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.item-predio-sub {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-predio-sub i, .item-date-sub i {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

/* FOCAL POINT #2: Estado del Reclamo (Botón Píldora de Selección) */
.item-status-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 36px;
  padding: 0 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  position: relative;
}

.item-status-wrapper i {
  font-size: 0.88rem;
  flex-shrink: 0;
}

.item-status-wrapper .item-select-status {
  background: transparent;
  border: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  outline: none;
  padding: 0 1.25rem 0 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1.1rem;
}

.item-status-wrapper.badge-sin-atender {
  background-color: #7c2d12;
  color: #ffedd5;
  border-color: rgba(245, 158, 11, 0.4);
}

.item-status-wrapper.badge-atendido {
  background-color: #064e3b;
  color: #d1fae5;
  border-color: rgba(16, 185, 129, 0.4);
}

.item-status-wrapper.badge-no-contesta {
  background-color: #881337;
  color: #ffe4e6;
  border-color: rgba(239, 68, 68, 0.4);
}

.item-status-wrapper option {
  background-color: #18181b;
  color: #ffffff;
}

.item-actions-block {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-action-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1c202e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-action-circle:hover {
  background: #252b3d;
  color: #ffffff;
}

.btn-action-circle.btn-detail:hover { background: rgba(0, 102, 255, 0.2); color: #0066ff; border-color: rgba(0, 102, 255, 0.3); }
.btn-action-circle.btn-edit:hover { background: rgba(245, 158, 11, 0.2); color: #f59e0b; border-color: rgba(245, 158, 11, 0.3); }
.btn-action-circle.btn-delete:hover { background: rgba(239, 68, 68, 0.2); color: #ef4444; border-color: rgba(239, 68, 68, 0.3); }

/* --------------------------------------------------------------------------
   9. Profile View
   -------------------------------------------------------------------------- */
.profile-container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-card-header {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-card-header:hover {
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-md);
}

.profile-avatar-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 2px solid rgba(0, 102, 255, 0.3);
  flex-shrink: 0;
}

.profile-header-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.profile-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.profile-badges-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.profile-area-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-main);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.profile-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
}

.profile-info-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-main);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.info-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.info-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.info-card-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.profile-tech-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tech-box-header {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-token-input {
  font-family: monospace;
  font-size: 0.85rem;
  background: var(--bg-input);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

/* --------------------------------------------------------------------------
   10. User Cards & Table System
   -------------------------------------------------------------------------- */
.user-avatar-initial {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  flex-shrink: 0;
}

.user-role-tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.user-role-tag.role-admin {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.user-role-tag.role-comercial {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.user-role-tag.role-operacion {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.user-status-pill {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.user-status-pill.active {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.user-status-pill.inactive {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.data-table { width: 100%; border-collapse: collapse; text-align: left; }

.data-table th {
  background: #0b1120;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-color);
}

.data-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-main);
  vertical-align: middle;
}

.data-table tbody tr:hover { background: var(--bg-card-hover); }

.actions-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --------------------------------------------------------------------------
   11. Unified Status Badges
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  width: fit-content;
}

.badge-atendido { background: var(--success-bg); color: var(--success); border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-sin-atender { background: var(--warning-bg); color: var(--warning); border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-no-contesta { background: var(--danger-bg); color: var(--danger); border: 1px solid rgba(239, 68, 68, 0.3); }
.badge-admin { background: var(--primary-light); color: var(--primary); }
.badge-comercial { background: var(--info-bg); color: var(--info); }
.badge-operacion { background: var(--success-bg); color: var(--success); }

/* --------------------------------------------------------------------------
   12. Side Panel & Bottom Sheet (Modales y Filtros)
   -------------------------------------------------------------------------- */
.panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.panel-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.side-panel {
  position: fixed;
  top: 0;
  right: -520px;
  width: var(--panel-width);
  max-width: 90vw;
  height: 100vh;
  background: var(--bg-panel);
  border-left: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: right 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-panel.active { right: 0; }

.side-panel form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.panel-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.panel-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.panel-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.panel-header-area-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  background: var(--bg-hover);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--primary);
}

.header-area-select {
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: capitalize;
  cursor: pointer;
  outline: none;
}

.header-area-select option {
  background: #1e293b;
  color: #ffffff;
}

.panel-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.panel-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Detail Panel Spec */
.detail-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.detail-hero-card, .detail-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.detail-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-ot-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.detail-hero-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
}

.detail-hero-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.detail-section-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.detail-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.detail-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

.detail-desc-box {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
}

.btn-tel-link, .gps-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.detail-photo-container {
  margin-top: 0.5rem;
  width: 100%;
}

.item-photo-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item-detail-img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.btn-view-full-img {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.75rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-view-full-img:hover {
  background: var(--primary);
  color: #ffffff;
}

.photo-placeholder-box {
  padding: 1.75rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

.photo-placeholder-box i {
  font-size: 1.8rem;
  opacity: 0.6;
}

.detail-audit-box {
  background: var(--bg-card-hover);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Bottom Sheet */
.bottom-sheet {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 520px;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: bottom 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-sheet.active { bottom: 0; }

.bottom-sheet-header {
  padding: 1rem 1.5rem 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.sheet-handle {
  width: 36px;
  height: 4px;
  background: var(--text-subtle);
  border-radius: var(--radius-full);
  opacity: 0.6;
}

.bottom-sheet-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.bottom-sheet-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* --------------------------------------------------------------------------
   13. Notifications / Toasts (Cápsula Superior Central)
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.toast {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
  pointer-events: auto;
  white-space: nowrap;
  animation: toastPopIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.success {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

.toast.error {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}

.toast.info {
  background: var(--btn-sec-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.toast.toast-hiding {
  opacity: 0;
  transform: scale(0.92) translateY(-10px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toastPopIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* --------------------------------------------------------------------------
   14. Confirmation Modal
   -------------------------------------------------------------------------- */
.confirm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.confirm-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.confirm-modal-card {
  width: 100%;
  max-width: 380px;
  background: #1c1e24;
  border-radius: 20px;
  padding: 2.25rem 1.75rem 1.75rem 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: scale(0.92);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.confirm-modal-overlay.active .confirm-modal-card { transform: scale(1); }

.confirm-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #342024;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #f87171;
  margin-bottom: 1.25rem;
}

.confirm-modal-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.confirm-modal-message {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 1.75rem;
}

.confirm-modal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
}

.btn-confirm-cancel {
  background: #2a2d36;
  color: #d1d5db;
  border: 1px solid #3b3f4d;
  border-radius: var(--radius-full);
  padding: 0.65rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  min-width: 110px;
}

.btn-confirm-cancel:hover {
  background: #343844;
  color: #ffffff;
}

.btn-confirm-accept {
  background: #dc2626;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  padding: 0.65rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
  min-width: 110px;
}

.btn-confirm-accept:hover { background: #b91c1c; }

/* --------------------------------------------------------------------------
   15. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (min-width: 993px) {
  .topbar-filter-desktop { display: inline-block !important; }
  .mobile-only-filter-btn { display: none !important; }
  .bottom-sheet { display: none !important; }
}

@media (max-width: 992px) {
  .sidebar {
    width: 100%;
    height: 64px;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transform: none;
  }

  .sidebar-header, .sidebar-footer { display: none !important; }

  .sidebar-nav {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 0 0.5rem;
    width: 100%;
    gap: 0;
  }

  .nav-item {
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.35rem 0.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    text-align: center;
    flex: 1;
    justify-content: center;
    border: none;
    background: transparent;
  }

  .nav-item i {
    width: 36px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    border-radius: var(--radius-full);
    background: transparent;
  }

  .nav-item.active {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-weight: 700;
  }

  .nav-item.active i {
    background: var(--primary-light);
    color: var(--primary);
  }

  .main-wrapper {
    margin-left: 0;
    padding-bottom: 75px;
  }

  .topbar {
    padding: 0.6rem 1rem;
    height: auto;
    min-height: 60px;
  }

  .topbar-search-group {
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
  }

  .topbar-search-group .search-wrapper {
    min-width: 100%;
    flex: 1 1 100%;
  }

  .topbar-filter-desktop { display: none !important; }
  .mobile-only-filter-btn { display: inline-flex !important; }

  .item-row {
    border-radius: var(--radius-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1.1rem;
  }

  .item-left-block, .item-center-block {
    width: 100%;
    justify-content: flex-start;
  }

  .item-actions-block {
    width: 100%;
    justify-content: flex-end;
    border-top: 1px dashed var(--border-color);
    padding-top: 0.65rem;
  }

  .side-panel {
    width: 100vw;
    max-width: 100vw;
    right: -100vw;
  }

  .side-panel.active { right: 0; }
}

@media (max-width: 576px) {
  .content-body { padding: 1rem; }
  .form-grid-2, .detail-grid-2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
