/* IP Lookup Tool - Professional Desktop-Optimized UI */

/* Hero Section */
.ip-lookup-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1.5rem 0;
  margin-bottom: 0;
}

.ip-lookup-hero h1 {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ip-lookup-hero .hero-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Tool Container - Desktop Optimized */
.ip-lookup-container {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.ip-lookup-form label {
  display: block;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Input Group - Horizontal Layout */
.ip-lookup-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.ip-lookup-input-group input {
  flex: 1;
  min-width: 150px;
  padding: 0.65rem 0.85rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  font-family: "JetBrains Mono", "Courier New", monospace;
}

.ip-lookup-input-group input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.reset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  background: #f3f4f6;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.reset-btn:hover {
  background: #e5e7eb;
  color: #374151;
  border-color: #d1d5db;
}

.reset-btn:active {
  transform: scale(0.95);
}

.reset-btn svg {
  width: 16px;
  height: 16px;
  display: block;
  transition: transform 0.2s ease;
  overflow: visible;
}

.reset-icon-fallback {
  display: none;
  font-size: 18px;
  line-height: 1;
}

/* Default: show the original (desktop) reset icon */
.reset-btn .reset-icon-mobile {
  display: none;
}

.reset-btn .reset-icon-desktop {
  display: block;
}

.reset-btn .reset-icon-desktop path {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reset-btn .reset-icon-mobile {
  shape-rendering: geometricPrecision;
}

.reset-btn .reset-icon-mobile path {
  fill: currentColor;
  stroke: none;
}

@media (hover: hover) and (pointer: fine) {
  /* Preserve the original desktop behavior without affecting touch devices */
  .reset-btn:hover {
    transform: rotate(180deg);
  }

  .reset-btn:active {
    transform: rotate(180deg) scale(0.95);
  }
}

/* Tablet + mobile: use the simplified icon for better legibility */
@media (max-width: 1024px) {
  /* If mobile browsers fail to render the SVG, use a glyph fallback */
  .reset-btn .reset-icon-desktop,
  .reset-btn .reset-icon-mobile {
    display: none;
  }

  .reset-icon-fallback {
    display: block;
  }
}

.fetch-ip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.fetch-ip-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.fetch-ip-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.fetch-ip-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  overflow: visible;
}

.fetch-ip-btn svg path {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lookup-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.lookup-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.lookup-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.lookup-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  overflow: visible;
}

.lookup-btn svg path {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tool-help {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #64748b;
}

.tool-help code {
  background: #f1f5f9;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #6366f1;
}

/* Main Layout - Two Column with Sidebar */
.ip-lookup-main-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ip-lookup-content {
  min-width: 0;
}

.ip-lookup-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Related Tools Sidebar */
.related-tools-sidebar {
  background: white;
  border-radius: 6px;
  padding: 0.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  width: 100%;
}

.sidebar-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.35rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.sidebar-tools-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sidebar-tool-link {
  display: block;
  padding: 0.3rem 0.4rem;
  color: #475569;
  text-decoration: none;
  font-size: 0.7rem;
  border-radius: 3px;
  transition: all 0.15s ease;
  background: transparent;
}

.sidebar-tool-link:hover {
  background: #ede9fe;
  color: #6366f1;
  transform: translateX(2px);
}

/* Results Section - Professional Grid */
.lookup-results {
  margin-top: 1.5rem;
  animation: slideDown 0.3s ease;
}

/* Crawler-visible placeholder content */
.crawler-visible-content {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
}

.lookup-info-box {
  color: #334155;
}

.lookup-info-box h3 {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.lookup-info-box p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.lookup-info-box ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.lookup-info-box li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.lookup-info-box strong {
  color: #6366f1;
  font-weight: 600;
}

/* Noscript warning */
.noscript-warning {
  background: #fef3c7;
  border: 2px solid #fbbf24;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
  color: #92400e;
}

.noscript-warning p {
  margin: 0;
  font-weight: 600;
}

/* Hide placeholder when results are loaded */
.lookup-results.has-results .crawler-visible-content {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.results-header {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  padding: 1rem 1.25rem;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.results-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ip-address-badge {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  margin-left: 0.5rem;
}

/* View Toggle - Compact */
.view-toggle {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem;
  border-radius: 6px;
}

.toggle-btn {
  padding: 0.4rem 0.9rem;
  border: none;
  background: transparent;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  color: rgba(255, 255, 255, 0.8);
}

.toggle-btn.active {
  background: white;
  color: #4f46e5;
}

/* Results Container */
.results-container {
  background: white;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 1.25rem;
}

/* Info Grid - Browser Info Style */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.85rem;
}

.info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 8px;
  padding: 0.85rem;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  transition: all 0.2s;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.card-title {
  font-size: 0.7rem;
  color: #0f172a;
  margin-bottom: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-icon {
  font-size: 1rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  align-items: center;
  gap: 0.85rem;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: #334155;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.info-value {
  color: #0f172a;
  text-align: right;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "JetBrains Mono", "Courier New", monospace;
  word-break: break-word;
}

/* Full Width Card for User Agent Style Data */
.info-card.full-width {
  grid-column: 1 / -1;
}

.data-box {
  background: rgba(248, 250, 252, 0.8);
  padding: 0.75rem;
  border-radius: 6px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.7rem;
  word-break: break-all;
  color: #475569;
  border: 1px solid rgba(226, 232, 240, 0.6);
  margin-top: 0.4rem;
  line-height: 1.5;
}

/* Loading State */
.loading-state {
  text-align: center;
  padding: 3rem 2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border: 4px solid #f3f4f6;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-state p {
  color: #64748b;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Error State */
.error-state {
  text-align: center;
  padding: 2rem;
  background: #fef2f2;
  border-radius: 8px;
  border: 2px solid #fecaca;
}

.error-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.error-state h3 {
  color: #991b1b;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.error-state p {
  color: #b91c1c;
  font-size: 0.9rem;
}

/* Ad Sidebar - Professional Placement */
.ad-sidebar {
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ad-label {
  font-size: 0.7rem;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Ad Before Results */
.ad-before-results {
  margin: 1.5rem 0;
}

.ad-horizontal {
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  min-height: 90px;
  max-width: 728px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Info Section with Sidebar Layout */
.info-section {
  background: white;
  margin: 2rem 0;
}

.info-section .container {
  max-width: 1400px;
}

.info-content-wrapper {
  max-width: 100%;
  padding-right: 0;
}

/* Ad Content Break */
.ad-content-break {
  padding: 2rem 0;
  background: linear-gradient(to bottom, transparent, #f9fafb, transparent);
  margin: 2rem 0;
}

.ad-responsive-rectangle {
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  min-height: 250px;
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ip-lookup-main-layout {
    grid-template-columns: 1fr;
  }

  .ip-lookup-sidebar {
    position: static;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .ip-lookup-hero h1 {
    font-size: 1.4rem;
  }

  .ip-lookup-container {
    padding: 1rem;
  }

  .ip-lookup-input-group {
    gap: 0.4rem;
  }

  .ip-lookup-input-group input {
    min-width: 100px;
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
  }

  .reset-btn {
    width: 38px;
    height: 38px;
    padding: 0.6rem;
  }

  .reset-btn svg {
    width: 14px;
    height: 14px;
  }

  .fetch-ip-btn {
    padding: 0.6rem 0.7rem;
    font-size: 0.75rem;
    gap: 0.3rem;
  }

  .fetch-ip-btn svg {
    width: 13px;
    height: 13px;
  }

  .lookup-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    gap: 0.3rem;
  }

  .lookup-btn svg {
    width: 13px;
    height: 13px;
  }

  .results-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .view-toggle {
    width: 100%;
  }

  .toggle-btn {
    flex: 1;
  }

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

  .ip-lookup-main-layout {
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .ip-lookup-input-group {
    gap: 0.3rem;
  }

  .ip-lookup-input-group input {
    min-width: 80px;
    padding: 0.5rem 0.4rem;
    font-size: 0.7rem;
  }

  .reset-btn {
    width: 32px;
    height: 32px;
    padding: 0.5rem;
  }

  .reset-btn svg {
    width: 14px;
    height: 14px;
  }

  .reset-icon-fallback {
    font-size: 16px;
  }

  .fetch-ip-btn {
    padding: 0.5rem 0.5rem;
    font-size: 0.65rem;
    gap: 0.25rem;
  }

  .fetch-ip-btn svg {
    width: 11px;
    height: 11px;
  }

  .lookup-btn {
    padding: 0.5rem 0.6rem;
    font-size: 0.7rem;
    gap: 0.25rem;
  }

  .lookup-btn svg {
    width: 11px;
    height: 11px;
  }

  .ip-address-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.35rem;
  }

  .tool-help {
    font-size: 0.65rem;
    margin-top: 0.5rem;
  }

  .ip-lookup-container {
    padding: 0.75rem;
  }

  .ip-lookup-form label {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
}

/* Print Styles */
@media print {
  .ad-sidebar,
  .ad-before-results,
  .ad-content-break,
  .view-toggle,
  .fetch-ip-btn,
  .lookup-btn {
    display: none !important;
  }
}

/* Hero Section Optimization */
.ip-lookup-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem 0 2.5rem;
  margin-bottom: 2rem;
}

.ip-lookup-hero h1 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ip-lookup-hero .hero-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Tool Container - Compact and Modern */
.ip-lookup-container {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 850px;
  margin: 0 auto;
}

.ip-lookup-form label {
  display: block;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

/* Input Group with Fetch Button */
.ip-lookup-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.ip-lookup-input-group input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: "Monaco", "Consolas", monospace;
}

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

.fetch-ip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.fetch-ip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.fetch-ip-btn:active {
  transform: translateY(0);
}

.fetch-ip-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.fetch-ip-btn svg {
  flex-shrink: 0;
}

.lookup-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.lookup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.lookup-btn:active {
  transform: translateY(0);
}

.lookup-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.lookup-btn svg {
  flex-shrink: 0;
}

/* Tool Help Text */
.tool-help {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.help-icon {
  font-size: 1rem;
}

.tool-help code {
  background: #f3f4f6;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: "Monaco", "Consolas", monospace;
  font-size: 0.8rem;
  color: #667eea;
}

/* Results Section - Dual Mode Display */
.lookup-results {
  margin-top: 1.5rem;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f3f4f6;
}

.results-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ip-address-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-family: "Monaco", "Consolas", monospace;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
}

/* View Toggle Switch */
.view-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #f9fafb;
  padding: 0.35rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.view-toggle-label {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}

.toggle-btn {
  padding: 0.4rem 0.8rem;
  border: none;
  background: transparent;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #6b7280;
}

.toggle-btn.active {
  background: white;
  color: #667eea;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.toggle-btn:hover:not(.active) {
  color: #374151;
}

/* Simple View (Regular Users) */
.simple-view {
  display: grid;
  gap: 1rem;
}

.simple-card {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.simple-card:hover {
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.simple-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.simple-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.simple-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #374151;
  margin: 0;
}

.simple-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.5;
}

.simple-subtext {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

/* Advanced View (Tech-Savvy Users) */
.advanced-view {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.advanced-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.2s ease;
}

.advanced-card:hover {
  background: white;
  border-color: #667eea;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.advanced-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #6b7280;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.advanced-label-icon {
  font-size: 0.9rem;
}

.advanced-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  font-family: "Monaco", "Consolas", monospace;
  word-break: break-all;
}

.advanced-value.large {
  font-size: 1.1rem;
}

/* Map Section (if coordinates available) */
.map-section {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 12px;
  border: 2px solid #93c5fd;
}

.map-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coordinates-display {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.coord-item {
  background: white;
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.coord-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coord-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e40af;
  font-family: "Monaco", "Consolas", monospace;
  margin-top: 0.25rem;
}

/* Loading State */
.loading-state {
  text-align: center;
  padding: 2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border: 4px solid #f3f4f6;
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-state p {
  color: #6b7280;
  font-weight: 500;
}

/* Error State */
.error-state {
  text-align: center;
  padding: 2rem;
  background: #fef2f2;
  border-radius: 12px;
  border: 2px solid #fecaca;
}

.error-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.error-state h3 {
  color: #991b1b;
  margin-bottom: 0.5rem;
}

.error-state p {
  color: #b91c1c;
}

/* Ad Placements - Intelligent and Non-Intrusive */
.ad-section {
  margin: 1.5rem 0;
}

.ad-before-results {
  margin-top: 1.5rem;
}

.ad-placeholder {
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ad-label {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.ad-horizontal {
  min-height: 90px;
  max-width: 728px;
  margin: 0 auto;
}

.ad-vertical {
  min-height: 250px;
  width: 160px;
}

.ad-responsive-rectangle {
  min-height: 250px;
  max-width: 300px;
  margin: 0 auto;
}

/* Sticky Sidebar Ad */
.ad-sidebar {
  position: fixed;
  right: 20px;
  top: 100px;
  z-index: 50;
}

.ad-sticky-right {
  display: none; /* Hidden on mobile, shown on desktop */
}

/* Content Break Ad */
.ad-content-break {
  padding: 2rem 0;
  background: linear-gradient(to bottom, transparent, #f9fafb, transparent);
}

/* Info Content Wrapper (with sidebar space) */
.info-content-wrapper {
  max-width: 100%;
}

/* Responsive Design */
@media (min-width: 1200px) {
  .ad-sticky-right {
    display: block;
  }

  .info-content-wrapper {
    max-width: calc(100% - 200px); /* Leave space for sticky ad */
  }
}

@media (max-width: 768px) {
  .ip-lookup-hero h1 {
    font-size: 1.5rem;
  }

  .ip-lookup-container {
    padding: 1.25rem;
  }

  .ip-lookup-input-group {
    flex-direction: column;
  }

  .ip-lookup-input-group input,
  .fetch-ip-btn,
  .lookup-btn {
    width: 100%;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .advanced-view {
    grid-template-columns: 1fr;
  }

  .ad-sidebar {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .view-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .toggle-btn {
    flex: 1;
  }

  .ip-address-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Print Styles */
@media print {
  .ad-section,
  .ad-sidebar,
  .view-toggle,
  .fetch-ip-btn,
  .lookup-btn {
    display: none !important;
  }
}

/* ============================================
   DARK THEME OVERRIDES
   ============================================ */
body.dark-tech-theme .ip-lookup-hero {
  background: transparent !important;
  padding: 1.5rem 0 !important;
}

body.dark-tech-theme .ip-lookup-hero h1 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .ip-lookup-hero .hero-description {
  color: rgba(255, 255, 255, 0.75) !important;
}

body.dark-tech-theme .ip-lookup-container {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

body.dark-tech-theme .ip-lookup-form label {
  color: rgba(255, 255, 255, 0.85) !important;
}

body.dark-tech-theme .ip-lookup-input-group input {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

body.dark-tech-theme .ip-lookup-input-group input:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #8a7dff !important;
  box-shadow: 0 0 0 3px rgba(138, 125, 255, 0.2) !important;
}

body.dark-tech-theme .reset-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

body.dark-tech-theme .reset-btn:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

body.dark-tech-theme .fetch-ip-btn {
  background: linear-gradient(135deg, #10b981, #059669) !important;
}

body.dark-tech-theme .lookup-btn {
  background: linear-gradient(135deg, #8a7dff, #6366f1) !important;
}

body.dark-tech-theme .tool-help {
  color: rgba(255, 255, 255, 0.6) !important;
}

body.dark-tech-theme .tool-help code {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #a5b4fc !important;
}

body.dark-tech-theme .results-container {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

body.dark-tech-theme .results-header h2 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .ip-address-badge {
  background: linear-gradient(
    135deg,
    rgba(138, 125, 255, 0.25),
    rgba(48, 215, 255, 0.2)
  ) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(138, 125, 255, 0.4) !important;
}

body.dark-tech-theme .view-toggle {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .toggle-btn {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-tech-theme .toggle-btn.active {
  background: linear-gradient(
    135deg,
    rgba(138, 125, 255, 0.25),
    rgba(48, 215, 255, 0.2)
  ) !important;
  color: rgba(255, 255, 255, 0.98) !important;
}

body.dark-tech-theme .info-card {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .info-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-tech-theme .info-value {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .copy-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

body.dark-tech-theme .copy-btn:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  border-color: #8a7dff !important;
}

body.dark-tech-theme .advanced-info-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .advanced-info-row:last-child {
  border-bottom: none !important;
}

body.dark-tech-theme .map-container {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .map-placeholder {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

body.dark-tech-theme .faq-section h2 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .faq-item {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .faq-item h3 {
  color: rgba(255, 255, 255, 0.92) !important;
}

body.dark-tech-theme .faq-item p {
  color: rgba(255, 255, 255, 0.75) !important;
}

body.dark-tech-theme .error-message {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #ff8a8a !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
}

body.dark-tech-theme .loading {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Info sections - CRITICAL DARK THEME STYLING */
body.dark-tech-theme .info-section {
  background: transparent !important;
}

body.dark-tech-theme .info-content-wrapper {
  background: transparent !important;
}

body.dark-tech-theme .info-content-wrapper h2,
body.dark-tech-theme .info-content-wrapper h3,
body.dark-tech-theme .info-content-wrapper h4 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .info-content-wrapper p,
body.dark-tech-theme .info-content-wrapper li {
  color: rgba(255, 255, 255, 0.75) !important;
}

body.dark-tech-theme .info-content-wrapper a {
  color: #8a7dff !important;
}

/* Info grid cards */
body.dark-tech-theme .info-grid {
  background: transparent !important;
}

body.dark-tech-theme .info-grid .info-card {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .info-grid .info-card h3 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .info-grid .info-card p {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Feature list */
body.dark-tech-theme .feature-list {
  background: transparent !important;
}

body.dark-tech-theme .feature-item {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .feature-item h4 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .feature-item p {
  color: rgba(255, 255, 255, 0.75) !important;
}

body.dark-tech-theme .feature-content h4 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .feature-content p {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Limitation list */
body.dark-tech-theme .limitation-list {
  background: transparent !important;
}

body.dark-tech-theme .limitation-item {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

body.dark-tech-theme .limitation-item span {
  color: rgba(255, 255, 255, 0.85) !important;
}

body.dark-tech-theme .privacy-note {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Accuracy stats */
body.dark-tech-theme .accuracy-stats {
  background: transparent !important;
}

body.dark-tech-theme .accuracy-item {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .accuracy-percentage {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .accuracy-label {
  color: rgba(255, 255, 255, 0.85) !important;
}

body.dark-tech-theme .accuracy-item p {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* IP comparison */
body.dark-tech-theme .ip-comparison {
  background: transparent !important;
}

body.dark-tech-theme .ip-type {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .ip-type h4 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .ip-type p {
  color: rgba(255, 255, 255, 0.75) !important;
}

body.dark-tech-theme .ip-type strong {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Geolocation sources */
body.dark-tech-theme .geolocation-sources {
  background: transparent !important;
}

body.dark-tech-theme .geolocation-sources li {
  color: rgba(255, 255, 255, 0.75) !important;
}

body.dark-tech-theme .geolocation-sources li strong {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Use cases */
body.dark-tech-theme .use-cases {
  background: transparent !important;
}

body.dark-tech-theme .use-case {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .use-case h4 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .use-case p {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Lookup info box (crawler visible content) */
body.dark-tech-theme .lookup-info-box {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .lookup-info-box h3 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .lookup-info-box p,
body.dark-tech-theme .lookup-info-box li {
  color: rgba(255, 255, 255, 0.75) !important;
}

body.dark-tech-theme .lookup-info-box strong {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.dark-tech-theme .crawler-visible-content {
  background: transparent !important;
}

/* Simple and advanced cards */
body.dark-tech-theme .simple-view {
  background: transparent !important;
}

body.dark-tech-theme .simple-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .simple-card:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(138, 125, 255, 0.5) !important;
}

body.dark-tech-theme .simple-card h3 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .simple-value {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .simple-subtext {
  color: rgba(255, 255, 255, 0.65) !important;
}

body.dark-tech-theme .advanced-view {
  background: transparent !important;
}

body.dark-tech-theme .advanced-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .advanced-card:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(138, 125, 255, 0.5) !important;
}

body.dark-tech-theme .advanced-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-tech-theme .advanced-value {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Results title */
body.dark-tech-theme .results-title {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .results-header {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

/* Lookup results */
body.dark-tech-theme .lookup-results {
  background: transparent !important;
}

/* Info rows */
body.dark-tech-theme .info-row {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

/* Card title */
body.dark-tech-theme .card-title {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Data box */
body.dark-tech-theme .data-box {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Map section */
body.dark-tech-theme .map-section {
  background: rgba(138, 125, 255, 0.1) !important;
  border-color: rgba(138, 125, 255, 0.3) !important;
}

body.dark-tech-theme .map-section h4 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .coord-item {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .coord-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-tech-theme .coord-value {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .coordinates-display {
  background: transparent !important;
}

/* Loading state */
body.dark-tech-theme .loading-state {
  background: transparent !important;
}

body.dark-tech-theme .loading-state p {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-tech-theme .spinner {
  border-color: rgba(255, 255, 255, 0.2) !important;
  border-top-color: #8a7dff !important;
}

/* Error state */
body.dark-tech-theme .error-state {
  background: rgba(239, 68, 68, 0.15) !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
}

body.dark-tech-theme .error-state h3 {
  color: #ff8a8a !important;
}

body.dark-tech-theme .error-state p {
  color: #ff8a8a !important;
}

/* Sidebar */
body.dark-tech-theme .related-tools-sidebar {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .sidebar-title {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .sidebar-tool-link {
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .sidebar-tool-link:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(138, 125, 255, 0.5) !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Privacy guidelines */
body.dark-tech-theme .privacy-guidelines {
  background: transparent !important;
}

body.dark-tech-theme .guideline {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme .guideline h4 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .guideline ul {
  background: transparent !important;
}

body.dark-tech-theme .guideline ul li {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Related tools */
body.dark-tech-theme .related-tools {
  background: transparent !important;
}

body.dark-tech-theme .related-tool {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

body.dark-tech-theme .related-tool:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(138, 125, 255, 0.5) !important;
}

body.dark-tech-theme .tool-name {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme .tool-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Inline styled sections (FAQ, Related guides) - CRITICAL OVERRIDES */
body.dark-tech-theme
  section
  > div[style*="background: rgba(255, 255, 255, 0.98)"] {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-tech-theme section h2[style*="color: #1e293b"] {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme section p[style*="color: #475569"] {
  color: rgba(255, 255, 255, 0.75) !important;
}

body.dark-tech-theme details[style*="background: #f8fafc"] {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

body.dark-tech-theme summary[style*="color: #334155"] {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-tech-theme details p[style*="color: #475569"] {
  color: rgba(255, 255, 255, 0.75) !important;
}

body.dark-tech-theme details a[style*="color: #6366f1"] {
  color: #8a7dff !important;
}

body.dark-tech-theme a[style*="background: #f8fafc"] {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

body.dark-tech-theme a[style*="background: #f8fafc"]:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(138, 125, 255, 0.5) !important;
}
