/* Safe CSS fixes that won't interfere with JavaScript functionality */

/* Ensure full width layout */
.container {
  max-width: 100% !important;
  width: 100% !important;
}

/* Hide background interference elements */
div[class*="absolute"][class*="inset-0"][class*="opacity-10"] {
  display: none !important;
}

/* Enhance main content visibility */
div[class*="relative"][class*="z-10"] {
  z-index: 50 !important;
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  border-radius: 8px !important;
  padding: 1.5rem !important;
}

/* Basic responsive improvements */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  div[class*="relative"][class*="z-10"] {
    padding: 1rem !important;
    margin: 0.5rem !important;
  }
}

/* Ensure clickable elements have proper cursor */
button, [role="button"], a {
  cursor: pointer !important;
}

/* Basic touch target improvements */
button, [role="button"] {
  min-height: 44px !important;
  min-width: 44px !important;
}
