/*
 * Admin Components
 *
 * Styles specific to admin dashboard and management interfaces.
 * Consolidated from all admin views to follow DRY principles.
 */

/* ========================================================================
   ADMIN CONTAINER
   ======================================================================== */
.admin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.admin-dashboard {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========================================================================
   METRICS GRID & CARDS
   ======================================================================== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.metric-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 5px solid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Metric Card Themes */
.metric-card.total { border-left-color: #3b82f6; }
.metric-card.accessed { border-left-color: #06b6d4; }
.metric-card.objectives { border-left-color: #10b981; }
.metric-card.profile { border-left-color: #f59e0b; }
.metric-card.assessment { border-left-color: #8b5cf6; }
.metric-card.xray { border-left-color: #ef4444; }
.metric-card.premium { border-left-color: #f97316; }

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #1f2937;
}

.metric-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 5px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-change {
  font-size: 0.85rem;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 20px;
  display: inline-block;
}

.metric-change.positive {
  background: #dcfce7;
  color: #16a34a;
}

.metric-change.neutral {
  background: #f3f4f6;
  color: #6b7280;
}

.conversion-rate {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 8px;
}

/* ========================================================================
   CHARTS SECTION
   ======================================================================== */
.charts-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.chart-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.chart-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 20px 0;
}

.recent-signups-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.recent-signups {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.signup-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.signup-item:last-child {
  border-bottom: none;
}

.signup-date {
  font-size: 0.8rem;
  color: #6b7280;
}

/* ========================================================================
   FUNNEL VISUALIZATION
   ======================================================================== */
.funnel-visualization {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.funnel-stage {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 10px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.funnel-stage:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

/* Funnel Stage Colors */
.funnel-stage.stage-0 { border-left-color: #3b82f6; }
.funnel-stage.stage-1 { border-left-color: #06b6d4; }
.funnel-stage.stage-2 { border-left-color: #10b981; }
.funnel-stage.stage-3 { border-left-color: #f59e0b; }
.funnel-stage.stage-4 { border-left-color: #8b5cf6; }
.funnel-stage.stage-5 { border-left-color: #ef4444; }
.funnel-stage.stage-6 { border-left-color: #f97316; }

.funnel-info {
  flex: 1;
}

.funnel-name {
  font-weight: 600;
  color: #1f2937;
  font-size: 1.1rem;
}

.funnel-count {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-left: auto;
  margin-right: 15px;
}

.funnel-percentage {
  font-size: 0.9rem;
  color: #6b7280;
  background: white;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
}

/* ========================================================================
   MODAL
   ======================================================================== */
.users-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 15px;
  padding: 30px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 15px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  padding: 5px;
}

.close-modal:hover {
  color: #1f2937;
}

.user-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.user-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s ease;
}

.user-item:hover {
  background: #f8fafc;
}

/* ========================================================================
   USERS TABLE
   ======================================================================== */
.users-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.users-table table {
  width: 100%;
  border-collapse: collapse;
}

.users-table th {
  background: #f8f9fa;
  padding: 20px;
  text-align: left;
  font-weight: 600;
  color: #495057;
  border-bottom: 2px solid #dee2e6;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.users-table th:hover {
  background: #e5e7eb;
}

.users-table th:last-child {
  cursor: default;
}

.users-table th:last-child:hover {
  background: #f8f9fa;
}

.users-table th i {
  margin-left: 8px;
  font-size: 0.8rem;
}

.users-table td {
  padding: 20px;
  border-bottom: 1px solid #dee2e6;
  vertical-align: middle;
}

.users-table tr:hover {
  background-color: #f8f9fa;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.user-details h4 {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.user-details p {
  margin: 2px 0 0 0;
  color: #666;
  font-size: 0.9rem;
}

.user-actions {
  display: flex;
  gap: 10px;
}

.user-name {
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 5px 0;
}

.user-email {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
}

/* ========================================================================
   INTERACTIONS TABLE
   ======================================================================== */
.interactions-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.interactions-table table {
  width: 100%;
  border-collapse: collapse;
}

.interactions-table th {
  background: #f8f9fa;
  padding: 20px;
  text-align: left;
  font-weight: 600;
  color: #495057;
  border-bottom: 2px solid #dee2e6;
}

.interactions-table td {
  padding: 20px;
  border-bottom: 1px solid #dee2e6;
  vertical-align: middle;
}

.interactions-table tr:hover {
  background-color: #f8f9fa;
}

/* ========================================================================
   STATUS BADGES & ROLE BADGES
   ======================================================================== */
.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.active {
  background: #d4edda;
  color: #155724;
}

.status-badge.inactive {
  background: #f8d7da;
  color: #721c24;
}

.role-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.role-badge.admin {
  background: #ffeaa7;
  color: #d63031;
}

.role-badge.professional {
  background: #81ecec;
  color: #00b894;
}

.slug-badge {
  font-family: monospace;
  background: #e5e7eb;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* ========================================================================
   ADMIN BUTTONS & ACTIONS
   ======================================================================== */
.btn-impersonate {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-impersonate:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  color: white;
  text-decoration: none;
}

.btn-impersonate:disabled,
.btn-impersonate.disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-admin-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f8fafc;
  color: #6b7280;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-admin-action:hover {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fef3c7;
  color: #d97706;
  border: 1px solid #fcd34d;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-toggle:hover {
  background: #d97706;
  color: white;
  border-color: #d97706;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-delete:hover {
  background: #dc2626;
  color: white;
  border-color: #dc2626;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-new {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  color: white;
  text-decoration: none;
}

.actions-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

/* ========================================================================
   ADMIN NAVIGATION
   ======================================================================== */
.admin-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  background: #f8f9fa;
  color: #764ba2;
}

/* ========================================================================
   IMPERSONATION BANNER
   ======================================================================== */
.impersonation-banner {
  background: #ff6b6b;
  color: white;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

.btn-stop-impersonating {
  background: white;
  color: #ff6b6b;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-stop-impersonating:hover {
  background: #f8f9fa;
  text-decoration: none;
}

/* ========================================================================
   SEARCH SECTION
   ======================================================================== */
.search-section {
  background: white;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.search-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 15px;
  color: #9ca3af;
  z-index: 1;
}

.search-input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.search-input:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-input::placeholder {
  color: #9ca3af;
}

.search-results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #e5e7eb;
}

.search-count {
  color: #6b7280;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.clear-search {
  color: #dc2626;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.clear-search:hover {
  background: #fee2e2;
  text-decoration: none;
}

/* ========================================================================
   FILTERS CONTAINER
   ======================================================================== */
.filters-container {
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.filters-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr auto;
  gap: 15px;
  align-items: end;
}

.filters-grid > div label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
  font-size: 0.85rem;
}

.filters-grid input,
.filters-grid select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filters-grid input:focus,
.filters-grid select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* ========================================================================
   STATS BAR
   ======================================================================== */
.stats-bar {
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.stats-bar strong {
  color: #1e293b;
}

/* ========================================================================
   STATUS INDICATORS
   ======================================================================== */
.status-indicators {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
}

.status-dot.completed {
  background: #10b981;
}

/* ========================================================================
   RESPONSIVE TABLE WRAPPER
   For horizontal scrolling on mobile
   ======================================================================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

.table-responsive table {
  min-width: 600px;
}

/* Make all admin tables responsive by default */
.users-table,
.interactions-table,
.matches-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.users-table table,
.interactions-table table,
.matches-table table {
  min-width: 700px;
}

/* ========================================================================
   RESPONSIVE DESIGN
   ======================================================================== */
@media (max-width: 1024px) {
  .charts-section {
    grid-template-columns: 1fr;
  }

  /* Filters grid - 3 columns on tablet */
  .filters-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .charts-section {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .funnel-stage {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .funnel-count {
    margin: 10px 0 0 0;
  }

  .recent-signups-section {
    padding: 20px;
  }

  .admin-dashboard,
  .admin-container {
    padding: 15px 10px;
  }

  /* Admin header mobile styles */
  .admin-header-unified {
    padding: 20px 15px;
    margin-bottom: 25px;
  }

  .admin-header-unified h1 {
    font-size: 1.5rem;
  }

  .admin-header-unified p {
    font-size: 0.9rem;
  }

  .admin-nav-unified {
    gap: 8px;
    margin-top: 15px;
  }

  .admin-nav-unified a {
    padding: 8px 12px;
    font-size: 0.8rem;
    gap: 6px;
  }

  /* Hide text labels on very small screens, keep icons */
  .admin-nav-unified a span {
    display: inline;
  }

  /* Filters grid - stack vertically on mobile */
  .filters-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .filters-grid > div {
    width: 100%;
  }

  .filters-container {
    padding: 15px;
  }

  /* Filter buttons row on mobile */
  .filters-grid > div:last-child {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .filters-grid > div:last-child .btn {
    flex: 1;
  }

  /* Stats bar mobile */
  .stats-bar {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center;
  }

  /* Table cells - more compact on mobile */
  .users-table th,
  .users-table td,
  .interactions-table th,
  .interactions-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }

  /* User info in table - stack vertically */
  .user-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .user-avatar {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .user-details h4 {
    font-size: 0.9rem;
  }

  .user-details p {
    font-size: 0.8rem;
    word-break: break-all;
  }

  /* Action buttons - wrap and smaller */
  .user-actions,
  .action-buttons {
    flex-wrap: wrap;
    gap: 6px !important;
  }

  .btn-admin-action,
  .btn-toggle,
  .btn-delete {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .btn-impersonate {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  /* Search section mobile */
  .search-section {
    padding: 15px;
  }

  .search-results-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Status and role badges - smaller */
  .status-badge,
  .role-badge,
  .slug-badge {
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  /* Modal mobile */
  .modal-content {
    width: 95%;
    padding: 20px;
    max-height: 90vh;
  }

  .modal-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  /* New button mobile */
  .btn-new {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .actions-bar {
    margin-bottom: 15px;
  }

  /* Admin actions bar (user show page) */
  .btn-admin-primary,
  .btn-admin-secondary,
  .btn-admin-danger {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  /* Grid layouts stack on mobile */
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns: auto 1fr"] {
    display: block !important;
  }

  [style*="grid-template-columns: 2fr 1fr"] > *,
  [style*="grid-template-columns: auto 1fr"] > * {
    margin-bottom: 20px;
  }

  /* Profile overview card mobile */
  .profile-overview-card > div {
    display: block !important;
  }

  .profile-avatar-section {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .admin-container {
    padding: 10px 8px;
  }

  /* Admin header even smaller */
  .admin-header-unified {
    padding: 15px 12px;
    border-radius: 12px;
  }

  .admin-header-unified h1 {
    font-size: 1.3rem;
  }

  .admin-nav-unified a {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  /* Table minimum width for very small screens */
  .users-table table,
  .interactions-table table,
  .matches-table table {
    min-width: 550px;
  }

  /* Pagination mobile */
  .pagination-wrapper {
    overflow-x: auto;
    padding: 10px 0;
  }

  /* Score badge in matches table */
  .score-badge {
    padding: 6px 8px;
    font-size: 11px;
    min-width: 40px;
  }

  /* Very compact table cells */
  .users-table th,
  .users-table td,
  .interactions-table th,
  .interactions-table td {
    padding: 8px 6px;
    font-size: 0.8rem;
  }

  /* User info even more compact */
  .user-email,
  .user-details p {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ========================================================================
   HORIZONTAL SCROLL INDICATOR
   Visual hint that table is scrollable
   ======================================================================== */
@media (max-width: 768px) {
  .users-table::before,
  .interactions-table::before,
  .matches-table::before {
    content: '← Scroll horizontally →';
    display: block;
    text-align: center;
    color: #6b7280;
    font-size: 0.75rem;
    padding: 8px;
    background: #f1f5f9;
    border-radius: 8px 8px 0 0;
    margin-bottom: -1px;
  }

  .users-table,
  .interactions-table,
  .matches-table {
    border-radius: 0 0 15px 15px;
  }
}
