/* Ensure header is fixed and stays at top */
header {
  z-index: 50 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

/* Add padding to body to account for fixed header */
body {
  padding-top: 80px !important; /* Height of header (h-20 = 5rem = 80px) */
}

@media (max-width: 1023px) {
  body {
    padding-top: 80px !important; /* Same on mobile/tablet */
  }
}

/* Prevent horizontal scroll and zoom on mobile/tablet */
/* CRITICAL: Only html element handles scrolling to prevent double scrollbar */
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  overflow-y: auto !important; /* Only html has vertical scrollbar */
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Smooth page load animation */
body {
  animation: pageFadeIn 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

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

/* Smooth content fade-in on page load */
#main-content,
main,
section,
article {
  animation: contentFadeIn 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  animation-delay: 50ms;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth card entrance animations */
.card,
.card-hover,
[class*="card"] {
  animation: cardFadeIn 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Stagger card animations */
.card:nth-child(1) { animation-delay: 0ms; }
.card:nth-child(2) { animation-delay: 50ms; }
.card:nth-child(3) { animation-delay: 100ms; }
.card:nth-child(4) { animation-delay: 150ms; }
.card:nth-child(5) { animation-delay: 200ms; }
.card:nth-child(6) { animation-delay: 250ms; }
.card:nth-child(n+7) { animation-delay: 300ms; }

body {
  overflow-x: hidden !important;
  overflow-y: visible !important; /* Body does NOT have scrollbar - html handles it */
  width: 100% !important;
  max-width: 100vw !important;
  height: auto !important; /* Let body grow naturally */
  min-height: 100vh !important; /* Ensure full viewport height */
  position: relative;
  margin: 0;
  padding-top: 15px !important; /* Padding for fixed header */
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

/* Prevent zoom on touch devices */
* {
  max-width: 100%;
  box-sizing: border-box;
}

/* Prevent horizontal overflow on all elements */
*, *::before, *::after {
  max-width: 100%;
}

/* Prevent zoom gestures on mobile/tablet */
@supports (-webkit-touch-callout: none) {
  body {
    touch-action: pan-y;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Allow text selection for content */
  p, span, h1, h2, h3, h4, h5, h6, a, li, td, th, input, textarea, button, label {
    -webkit-user-select: text;
    user-select: text;
  }
}

/* Prevent horizontal overflow on containers */
/* CRITICAL: Only prevent horizontal overflow, don't add vertical overflow */
.container, .max-w-7xl, .max-w-4xl, .max-w-3xl, .max-w-2xl {
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible; /* Allow natural flow */
}

/* Sections and main should not have overflow that creates scrollbars */
section, main {
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible; /* No scrollbar on these elements */
}

/* Header and footer should not scroll */
header, footer {
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

/* Divs should not have overflow unless specifically needed */
div {
  max-width: 100%;
  /* Don't set overflow on all divs - only when needed */
}

/* Ensure images don't cause horizontal scroll */
img, video, iframe, embed, object {
  max-width: 100% !important;
  height: auto;
}

/* Prevent tables from causing horizontal scroll */
table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
}

/* Prevent pre and code blocks from causing overflow */
pre, code {
  max-width: 100%;
  overflow-x: auto;
  word-wrap: break-word;
}

/* Mobile and tablet specific rules */
@media (max-width: 1024px) {
  /* CRITICAL: Only html handles scrolling on mobile too */
  html {
    overflow-x: hidden !important;
    overflow-y: auto !important; /* Only html has scrollbar */
    width: 100% !important;
    max-width: 100vw !important;
    height: 100% !important;
    position: relative;
  }
  
  body {
    overflow-x: hidden !important;
    overflow-y: visible !important; /* Body does NOT have scrollbar */
    width: 100% !important;
    max-width: 100vw !important;
    height: auto !important;
    min-height: 100vh !important;
    position: relative;
  }
  
  * {
    max-width: 100%;
  }
  
  /* Disable pinch zoom */
  * {
    touch-action: pan-y;
    -webkit-touch-callout: none;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgb(243 244 246);
}

.dark ::-webkit-scrollbar-track {
  background: rgb(17 24 39);
}

::-webkit-scrollbar-thumb {
  background: rgb(209 213 219);
  border-radius: 9999px;
}

.dark ::-webkit-scrollbar-thumb {
  background: rgb(55 65 81);
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(156 163 175);
}

.dark ::-webkit-scrollbar-thumb:hover {
  background: rgb(75 85 99);
}

/* Hide scrollbar for horizontal scroll */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Line clamp utilities */
.line-clamp-2 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.line-clamp-3 {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

/* News card title and content - Force 2 lines for news page cards */
article.card h3,
article.card-hover h3,
div.bg-surface-light h3.text-lg,
div.rounded-2xl h3.text-lg {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.4 !important;
  max-height: calc(1.4em * 2) !important;
}

article.card p.text-slate-600,
article.card-hover p.text-slate-600,
div.bg-surface-light p.text-text-secondary-light,
div.rounded-2xl p.text-text-secondary-light {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.5 !important;
  max-height: calc(1.5em * 2) !important;
}

/* FAQ Accordion Animation - using base smooth animation */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  display: none;
  will-change: max-height, opacity;
  transform: translateZ(0); /* Force hardware acceleration */
  backface-visibility: hidden; /* Prevent flickering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.faq-content.faq-open {
  /* Height is set inline via JavaScript for accurate measurement */
  opacity: 1;
  display: block;
}

.faq-content.faq-closed {
  max-height: 0;
  opacity: 0;
  display: none;
}

/* Image transition - using base smooth animation */
img {
  transition: opacity var(--transition-base, 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), transform var(--transition-base, 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
}

/* Active tab indicator animation - using base smooth animation */
.active-indicator {
  animation: slideIn var(--transition-base, 200ms cubic-bezier(0.4, 0, 0.2, 1));
  transition: all var(--transition-base, 200ms cubic-bezier(0.4, 0, 0.2, 1)) !important;
}

@keyframes slideIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Prose styles for dark mode */
.dark .prose {
  color: rgb(139 148 158);
}

.dark .prose h1,
.dark .prose h2,
.dark .prose h3,
.dark .prose h4,
.dark .prose h5,
.dark .prose h6 {
  color: rgb(230 237 243);
}

.dark .prose p {
  color: rgb(139 148 158);
}

.dark .prose a {
  color: rgb(255 140 66);
}

/* Card hover effects - using base smooth animation */
.card-hover {
  transition: all var(--transition-base, 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94)) !important;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Global rule for images inside cards - applies to all sections and all pages */
/* Target all card variations */
.card img,
[class*="card"] img,
article.card img,
.card-hover img,
.group.card img,
article[class*="card"] img,
div[class*="card"] img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Target cards with shadow-card classes (JavaScript rendered cards) */
[class*="shadow-card"] img,
[class*="shadow-card-light"] img,
[class*="shadow-card-dark"] img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Target images in rounded containers with shadow-card (common card pattern) */
.rounded-2xl[class*="shadow-card"] img,
.rounded-2xl[class*="shadow-card-light"] img,
.rounded-2xl[class*="shadow-card-dark"] img,
.rounded-2xl.overflow-hidden img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Target images in rounded card containers (only when combined with card classes) */
article.rounded-2xl[class*="card"] img,
article.rounded-2xl.card img,
div.rounded-2xl[class*="card"] img,
div.rounded-2xl.card img,
[class*="shadow-card"].rounded-2xl img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Ensure card image containers are properly sized */
.card > div:has(img),
[class*="card"] > div:has(img),
article.card > div:has(img),
.card-hover > div:has(img),
[class*="shadow-card"] > div:has(img),
article[class*="card"] > div:has(img),
div[class*="card"] > div:has(img),
.rounded-2xl[class*="shadow-card"] > div:has(img) {
  overflow: hidden !important;
  position: relative !important;
}

/* Fallback for browsers that don't support :has() - covers all card image containers */
.card > div img,
[class*="card"] > div img,
article.card > div img,
.card-hover > div img,
[class*="shadow-card"] > div img,
article[class*="card"] > div img,
div[class*="card"] > div img,
.rounded-2xl[class*="shadow-card"] > div img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Ensure aspect ratio containers maintain proper image sizing */
.aspect-video img,
.aspect-[4/3] img,
.aspect-[3/2] img,
[class*="aspect-"] img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Prevent body scroll when mobile menu is open - Only one scrollbar */
/* CRITICAL: When mobile menu is open, hide scrollbar on html (not body) */
html.mobile-menu-open {
  overflow: hidden !important; /* Hide html scrollbar when menu is open */
  height: 100% !important;
}

body.mobile-menu-open {
  overflow: hidden !important; /* Prevent body from scrolling */
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

/* Hide scrollbar on html when menu is open */
html.mobile-menu-open::-webkit-scrollbar {
  display: none !important;
}

/* Mobile menu sidebar - only scrollbar for menu content */
#mobile-menu > div {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
}

/* Mobile Menu - Clean Styles - Using Tailwind Logical Properties */
#mobile-menu {
  z-index: 50;
  position: fixed;
  inset: 0;
}

#mobile-menu:not(.hidden) {
  display: block;
}

#mobile-menu.hidden {
  display: none;
}

#mobile-menu > div {
  position: fixed;
  top: 0;
  inset-inline-end: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

[dir="rtl"] #mobile-menu > div {
  transform: translateX(-100%);
}

#mobile-menu:not(.hidden) > div {
  transform: translateX(0);
}

@media (min-width: 768px) {
  #mobile-menu > div {
    width: 384px;
  }
}

/* Prevent body scroll when mobile menu is open - handled above */

/* Mobile/Tablet Custom Dropdown Styles - Based on Existing mobile-nav-item Style */
#mobile-news-dropdown-button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

#mobile-news-dropdown-button:focus {
  outline: none;
}

#mobile-news-dropdown-chevron {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 1rem !important;
  height: 1rem !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s ease-in-out !important;
  color: #666666 !important;
  stroke: #666666 !important;
}

#mobile-news-dropdown-chevron path {
  stroke: #666666 !important;
  fill: none !important;
}

/* Icon rotates when dropdown is open */
#mobile-news-dropdown-button[aria-expanded="true"] #mobile-news-dropdown-chevron {
  transform: rotate(180deg) !important;
  color: #666666 !important;
  stroke: #666666 !important;
}

#mobile-news-dropdown-button[aria-expanded="true"] #mobile-news-dropdown-chevron path {
  stroke: #666666 !important;
}

/* Dropdown menu - matches mobile-nav-item style */
#mobile-news-dropdown-menu {
  display: none !important;
  overflow: hidden;
  animation: slideDownMobile 0.3s ease-out;
}

#mobile-news-dropdown-menu:not(.hidden) {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#mobile-news-dropdown-menu.hidden {
  display: none !important;
}

@keyframes slideDownMobile {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
  }
}

/* Sidebar Custom Classes Fallbacks */
.text-heading {
  color: #1A1A1A;
}

.bg-neutral-primary-soft {
  background-color: #F9FAFB;
}

.bg-neutral-secondary-medium {
  background-color: #F3F4F6;
}

.bg-neutral-secondary-soft {
  background-color: #F9FAFB;
}

.bg-neutral-tertiary {
  background-color: #E5E7EB;
}

.border-default {
  border-color: #E5E5E5;
}

.border-default-medium {
  border-color: #D1D5DB;
}

.border-e {
  border-right-width: 1px;
}

.text-body {
  color: #4B5563;
}

.text-fg-brand {
  color: #FF6633;
}

.hover\:text-fg-brand:hover {
  color: #FF6633;
}

.rounded-base {
  border-radius: 0.5rem;
}

.focus\:ring-neutral-tertiary:focus {
  --tw-ring-color: #E5E7EB;
}

/* Desktop News Dropdown Chevron Icon - Always Grey */
#news-dropdown-chevron {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 1rem !important;
  height: 1rem !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s ease-in-out !important;
  color: #666666 !important;
  stroke: #666666 !important;
}

#news-dropdown-chevron path {
  stroke: #666666 !important;
  fill: none !important;
}

/* Icon rotates but stays grey when open */
#news-dropdown-button[aria-expanded="true"] #news-dropdown-chevron {
  transform: rotate(180deg) !important;
  color: #666666 !important;
  stroke: #666666 !important;
}

#news-dropdown-button[aria-expanded="true"] #news-dropdown-chevron path {
  stroke: #666666 !important;
}

/* Ensure icon stays grey on hover */
#news-dropdown-button:hover #news-dropdown-chevron {
  color: #666666 !important;
  stroke: #666666 !important;
}

#news-dropdown-button:hover #news-dropdown-chevron path {
  stroke: #666666 !important;
}



/* Pulse animation for live indicator */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Ticker animation */
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-ticker {
  animation: ticker 30s linear infinite;
}

/* ============================================
   SINGLE BASE SMOOTH INTERACTION ANIMATION
   Applied to ALL interactive elements across ALL pages
   ============================================ */

/* Base smooth transition for all interactive elements */
button,
a,
input,
select,
textarea,
label,
.card,
.card-hover,
[class*="card"],
.btn,
[class*="btn"],
[role="button"],
[role="link"],
[role="tab"],
[role="menuitem"],
[tabindex]:not([tabindex="-1"]),
summary,
details,
.nav-link,
.menu-item,
.dropdown-item,
.modal,
.modal-overlay,
.tooltip,
.popover,
.accordion,
.tab,
[class*="hover"],
[class*="interactive"],
svg,
path,
circle,
rect,
polygon {
  transition: all var(--transition-base, 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94)) !important;
  will-change: transform, opacity, box-shadow, background-color, border-color, color, filter, backdrop-filter !important;
}

/* Smooth transitions for theme changes and all properties - Universal */
*,
*::before,
*::after {
  transition-property: background-color, border-color, color, fill, stroke, opacity, transform, box-shadow, filter, backdrop-filter !important;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  transition-duration: 300ms !important;
}

/* Enhanced transitions for images and media */
img,
picture,
video,
iframe,
embed,
object {
  transition: opacity var(--transition-base, 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), transform var(--transition-base, 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94)) !important;
  animation: imageFadeIn 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

@keyframes imageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Focus states */
input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus,
[tabindex]:focus {
  transition: all var(--transition-base, 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94)) !important;
}

/* Hover states */
a:hover,
button:hover,
.card:hover,
.card-hover:hover,
[class*="card"]:hover,
.btn:hover,
[class*="btn"]:hover,
[class*="hover"]:hover {
  transition: all var(--transition-base, 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94)) !important;
}

/* Active states - faster for immediate feedback */
a:active,
button:active,
.card:active,
.btn:active {
  transition-duration: 200ms !important;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Ensure images don't break layout */
img {
  max-width: 100%;
  height: auto;
}

/* Focus styles */
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* Button hover effects - using base smooth animation */
button {
  transition: all var(--transition-base, 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94)) !important;
}

button:hover {
  transform: translateY(-1px);
}

button:active {
  transform: translateY(0);
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Force all white backgrounds to black in dark mode */
.dark .bg-white,
.dark .bg-gray-50,
.dark .bg-gray-100,
.dark .bg-gray-200,
.dark [class*="bg-white"],
.dark [class*="bg-gray-50"],
.dark [class*="bg-gray-100"],
.dark [class*="bg-gray-200"] {
  background-color: #000000 !important;
}

/* Force light gray backgrounds with opacity to black in dark mode */
.dark .bg-gray-50\/50,
.dark .bg-gray-100\/50,
.dark .bg-white\/10,
.dark .bg-white\/20,
.dark .bg-white\/90 {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

/* Ensure sidebar card images stay within borders and are fully responsive */
.group img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Specific fix for trending now sidebar cards - fixed size with equal padding */
.h-\[100px\] .group {
  padding: 12px !important;
  gap: 16px !important;
}

.h-\[100px\] .group img,
.h-\[100px\] img {
  width: 96px !important;
  height: 96px !important;
  max-width: 96px !important;
  max-height: 96px !important;
  min-width: 96px !important;
  min-height: 96px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Ensure image containers in sidebar cards have fixed size with no padding */
.h-\[100px\] .w-24,
.h-\[100px\] > div:first-child {
  width: 96px !important;
  height: 96px !important;
  max-width: 96px !important;
  max-height: 96px !important;
  min-width: 96px !important;
  min-height: 96px !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Ensure text container has no padding */
.h-\[100px\] .group > div:last-child {
  padding: 0 !important;
  margin: 0 !important;
}

/* Responsive image handling for mobile and tablet - maintain fixed size with equal padding */
@media (max-width: 768px) {
  .h-\[100px\] .group {
    padding: 10px !important;
    gap: 12px !important;
  }
  
  .h-\[100px\] .w-24,
  .h-\[100px\] > div:first-child,
  .h-\[100px\] .group img,
  .h-\[100px\] img {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

