        body {
            font-family: Arial, sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .container, .loggedin-container {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 30px;
            max-width: 500px;
            width: 100%;
        }
        h1 {
            font-size: 24px;
            margin-bottom: 20px;
        }
        label {
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
        }
        input, textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 5px;
            border: 1px solid #ccc;
            font-size: 16px;
        }
        textarea {
            height: 200px;
        }
        .g-recaptcha {
            margin-bottom: 20px;
        }
        .submit-btn {
            width: 100%;
            background-color: #28a745;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }
        .submit-btn:hover {
            background-color: #218838;
        }
        .error-message {
            color: red;
            margin-top: -15px;
            margin-bottom: 15px;
        }
        .deduplication-message {
            color: green;
            margin-bottom: 15px;
        }
        
        
        
        #success {
            font-family: Arial, sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
      #success .container {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 30px;
            max-width: 500px;
            text-align: center;
        }
      #success  h1 {
            color: #28a745;
            font-size: 24px;
            margin-bottom: 20px;
        }
      #success  p {
            font-size: 16px;
            color: #333;
        }
      #success .loader {
            border: 6px solid #f3f3f3;
            border-top: 6px solid #28a745;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }
        
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
      #success  .button-container {
            margin-top: 20px;
        }
      #success  .btn {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            font-size: 16px;
        }
      #success .btn:hover {
            background-color: #0056b3;
        }
        
       /* Style for the logout link */
        .logout-link {
            position: absolute;
            top: 1vw;
            right: 1vw;
            background-color: #f44336; /* Red background */
            color: white;
            padding: 8px 15px;
            text-decoration: none;
            font-size: 16px;
            border-radius: 5px;
        }
        
        
         .container img {
            position: absolute;
            top: 1vw;
            left: 1vw;
            color: white;
            text-decoration: none;
            font-size: 16px;
            border-radius: 5px;
            width: 5vw;
        }

        .logout-link:hover {
            background-color: #d32f2f; /* Darker red on hover */
        }
        
        
            #login  {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .login-container {
            background-color: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 300px;
            text-align: center;
        }

        .login-container h2 {
            margin-bottom: 20px;
            color: #333;
        }

        .login-container img {
            width: 80px; /* Dummy logo size */
            margin-bottom: 20px;
        }

        .login-container label {
            display: block;
            text-align: left;
            margin: 8px 0 4px;
            color: #333;
        }

        .login-container input {
            width: 100%;
            padding: 10px;
            margin: 8px 0 16px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .login-container input[type="submit"] {
            background-color: #4CAF50;
            color: white;
            cursor: pointer;
            border: none;
        }

        .login-container input[type="submit"]:hover {
            background-color: #45a049;
        }


        /* Optional: Add some basic styling */
        body#scan-in-progress {
            background-color: #f9f9f9;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .container {
            text-align: center;
            padding: 20px;
            border: 2px solid #ffa500;
            border-radius: 10px;
            background-color: #ffffff;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .loggedin-container {text-align: left; padding-right: 40px;}
        
        
        
        .loader {
            border: 8px solid #f3f3f3;
            border-top: 8px solid #ffa500;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 2s linear infinite;
            margin: 20px auto;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .button-container {
            margin-top: 20px;
        }
        .btn {
            background-color: #008cba; /* Green color */
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 16px;
        }
        .btn:disabled,
        .btn.disabled {
            background-color: grey; /* Grey color when disabled */
            cursor: not-allowed;
        }
        .btn:hover:not(:disabled) {
            background-color: #005f5f; /* Darker green on hover */
        }
        
        
        .btn {
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
        }
        
        .btn.disabled {
            background-color: grey;
            color: white;
            cursor: not-allowed;
        }
        
        .btn.enabled {
            background-color: green;
            color: white;
            cursor: pointer;
        }
        
            /* Existing loader styles */
    .loader {
        border: 16px solid #f3f3f3;
        border-top: 16px solid #3498db;
        border-radius: 50%;
        width: 120px;
        height: 120px;
        animation: spin 2s linear infinite;
        margin: 0 auto;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    /* New success icon styles */
    .success-icon {
        width: 120px;
        height: 120px;
        background-image: url('success-icon.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin: 0 auto;
}

#verificationForm {margin-right: 20px;}
#home-page {text-align: left;

