img.protected {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
  }
    /* Custom styles for better mobile experience */
  .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Smooth transitions for hamburger animation */
  . hamburger-line {
    transform-origin: center;
  }

  /* Ensure mobile nav is above everything */
  #mobile-nav {
    z-index: 9999;
  }

  /* Ensure mobile nav is scrollable */
  #mobile-nav .fixed {
    height: 100vh; /* Teljes képernyő magasság */
    overflow-y: auto; /* Görgetés engedélyezése */
  }

  #mobile-nav nav {
    max-height: none; /* Nincs magasság korlátozás */
    height: auto; /* Tartalom határozza meg a magasságot */
    overflow-y: auto; /* Görgetés engedélyezése */
    padding-bottom: 4rem; /* Extra hely az alján */
  }

  /* Better focus states for accessibility */
  button:focus,
  input:focus,
  select:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
  }

  /* Touch-friendly button sizes */
  @media (max-width: 768px) {
    button, 
    input[type="submit"] {
      min-height: 44px;
      min-width: 44px;
    }
    
    a {
      min-height: 44px;
      display: flex;
      align-items: center;
    }
  }