    body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
			background: url('img/Lnwze_byQoria_Logo.jpg') no-repeat center center fixed;
			background-color: #F0F0F0;
            background-size: cover;
			
        }
		
	 header {
            background-color: rgba(255, 255, 255, 0.9);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            padding: 10px 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 15px;

        }
		
		  .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 40px;
      width: auto;
    }
	
	  nav {
            display: flex;
            justify-content: center;
            gap: 20px;
			background-color: #FFFFFF;
        }
        nav a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
        }
        .hero {
            background-color: ##FFFFFF;
            text-align: center;
            padding: 100px 20px 50px;
            margin-top: 60px;
        }
        .hero h1 {
            margin: 0;
            color: #0056b3;
        }
	
    h1 {
	 text-align: center;
      color: #fff;
    }
	
	    .testagent {
      margin: 2rem auto;
      padding: 1rem;
      border-radius: 8px;
      background-color: rgba(255, 255, 255, 0.9);
      /* max-width: 500px; */
      color: #333;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
	  position: fixed;
	  top: 70px;
	  left: 20px;
	  margin: 0;
	  /* width: 300px; */
	  /* z-index: 1000; */
	  
    }
	    .diagnostics {
      margin: 2rem auto;
      padding: 1rem;
      border-radius: 8px;
      background-color: rgba(255, 255, 255, 0.9);
      max-width: 500px;
      color: #333;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
	  position: fixed;
	  top: 70px;
	  right: 30px;
	  margin: 0;
	  width: 300px;
	  z-index: 1000;
		}
    .section {
      margin: 0 auto 2rem auto;
      padding: 1.5rem;
      border-radius: 12px;
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      border: 1px solid #e9ecef;
      width: 100%;
      max-width: 800px;
      color: #333;
    }
    .status {
      margin-top: 1rem;
      font-weight: bold;
    }
    .success {
      color: green;
    }
    .fail {
      color: red;
    }
    select, button {
      padding: 0.5rem;
      font-size: 1rem;
      margin: 0.5rem;
    }

    /* Progress Section Styles */
    .progress-section {
      margin: 2rem auto;
      padding: 1rem;
      border-radius: 8px;
      background-color: rgba(255, 255, 255, 0.9);
      max-width: 500px;
      color: #333;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      text-align: center;
    }

    .progress-bar {
      width: 100%;
      height: 20px;
      background-color: #e0e0e0;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #4CAF50, #45a049);
      width: 0%;
      transition: width 0.3s ease;
    }

    #progress-text {
      font-weight: bold;
      margin-bottom: 0.5rem;
      color: #0056b3;
    }

    .summary-stats {
      font-size: 0.9rem;
      color: #666;
    }

    #success-count {
      color: #4CAF50;
      font-weight: bold;
    }

    #fail-count {
      color: #f44336;
      font-weight: bold;
    }

    #pending-count {
      color: #ff9800;
      font-weight: bold;
    }

    /* Response Time Styles */
    .response-time {
      font-size: 0.8rem;
      color: #666;
      font-weight: normal;
    }

    /* Hamburger Menu Button */
    .hamburger-menu {
      position: relative;
      padding: 8px;
      color: #6b7280;
      background: transparent;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
      z-index: 1001;
    }

    .hamburger-menu:hover {
      color: #4b5563;
      background: #f3f4f6;
    }

    .menu-icon {
      width: 20px;
      height: 20px;
    }

    /* Side Menu */
    .side-menu {
      position: fixed;
      top: 0;
      left: -320px;
      width: 320px;
      height: 100vh;
      background: white;
      z-index: 1002;
      transition: left 0.3s ease;
      box-shadow: 2px 0 15px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
    }

    .side-menu.active {
      left: 0;
    }

    .side-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem;
      border-bottom: 1px solid #e0e0e0;
      background: #f8f9fa;
    }

    .side-menu-header h3 {
      margin: 0;
      color: #0056b3;
      font-size: 1.2rem;
      font-weight: 600;
    }

    .close-btn {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #666;
      padding: 0;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      transition: all 0.2s ease;
    }

    .close-btn:hover {
      background: #e9ecef;
      color: #333;
    }

    .side-menu-content {
      flex: 1;
      padding: 1rem;
      overflow-y: auto;
    }

    .menu-item {
      display: flex;
      align-items: center;
      padding: 1rem;
      margin-bottom: 0.5rem;
      border-radius: 8px;
      text-decoration: none;
      color: #333;
      background: #f8f9fa;
      border: 1px solid #e9ecef;
      transition: all 0.2s ease;
      cursor: pointer;
      width: 100%;
      box-sizing: border-box;
    }

    .menu-item:hover {
      background: #e9ecef;
      transform: translateX(4px);
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .menu-button {
      border: none;
      font-family: inherit;
      font-size: inherit;
    }

    .menu-icon {
      font-size: 24px;
      margin-right: 1rem;
      flex-shrink: 0;
    }

    .menu-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .menu-title {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .menu-desc {
      font-size: 0.85rem;
      color: #666;
    }

    /* Menu Overlay */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.5);
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Main Content - Simplified center layout */
    .main-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Connect Status Box */
    .connect-status-box {
      margin-bottom: 2rem;
      padding: 1.5rem;
      border-radius: 12px;
      background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      border: 1px solid #ffeaa7;
      text-align: center;
      width: 100%;
      max-width: 600px;
    }

    .connect-status-box h3 {
      margin: 0 0 1rem 0;
      color: #856404;
      font-size: 1.2rem;
      font-weight: 600;
    }

    #status, #extension-status {
      margin: 0.8rem 0;
      font-weight: bold;
      font-size: 1rem;
    }

    .agent-detected, .extension-detected {
      color: #4CAF50;
    }

    .agent-not-detected, .extension-not-detected {
      color: #f44336;
    }



    /* Mobile responsiveness */
    @media (max-width: 1024px) {
      .main-content {
        padding: 1rem;
      }

      .connect-status-box {
        max-width: 100%;
      }

      .section {
        max-width: 100%;
      }
    }

    @media (max-width: 768px) {
      .connect-status-box {
        margin-bottom: 1rem;
      }

      .main-content {
        padding: 1rem;
      }

      .hamburger-menu {
        padding: 6px;
      }

      .menu-icon {
        width: 18px;
        height: 18px;
      }
    }

    @media (max-width: 480px) {
      .main-content {
        padding: 0.5rem;
      }

      .side-menu {
        width: 280px;
        left: -280px;
      }

      .hamburger-menu {
        padding: 6px;
      }

      .menu-icon {
        width: 16px;
        height: 16px;
      }
    }
	
	footer {
      background-color: #ebebeb;
      color: #333;
      text-align: center;
      padding: 20px 0;
      position: bottom;
        }
		