body {
    background-color: #030305;
    color: #F4F4F5;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
  }
  
  .custom-scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  .custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #a855f7;
    border-radius: 99px;
  }
  .custom-scrollbar::-webkit-scrollbar-track {
    background-color: transparent;
  }
  
  .premium-glass {
    background: rgba(15, 15, 22, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .phone-glow {
    box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.25);
  }
  
  .neon-border {
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.1);
  }
  
  .pulse-glow {
    animation: pulseGlow 2s infinite alternate;
  }
  
  @keyframes pulseGlow {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(168, 85, 247, 0.4)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8)); }
  }
  
  /* Prisilno očuvanje boja kod PDF generiranja i ispis */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  
  @media print {
    .no-print {
      display: none !important;
    }
    body, html {
      background: #ffffff !important;
      color: #000000 !important;
      margin: 0 !important;
      padding: 0 !important;
    }
    
    /* OVO SAKRIVA SVE OSIM PORTFELJA KOD PRINTANJA NA MOBITELU */
    body * {
      visibility: hidden;
    }
    #print-target-content, #print-target-content * {
      visibility: visible;
    }
    #print-target-content {
      position: absolute;
      left: 0;
      top: 0;
      width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
      border: none !important;
      box-shadow: none !important;
    }
  }