body{font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;}

    
        
        .navbar {
            background-color: #333;
            overflow: hidden;
            text-align: center;
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 1000;
            /* Ensure navbar is above other content */
        }
        
        .navbar a {
            display: inline-block;
            color: white;
            text-align: center;
            padding: 14px 20px;
            text-decoration: none;
            font-size: 17px;
        }
        
        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }
        
        .navbar .title {
            font-size: 24px;
            color: white;
            text-decoration: none;
            padding: 14px 20px;
        }
        
        .navbar .verify-link {
            float: none;
        }
        
        .verification-container {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin-top: 80px;
            /* Adjust margin to avoid overlapping with navbar */
        }
        
        .verification-container h2 {
            margin-bottom: 1rem;
        }