body {
            background-color: #f4f4f4;
        }
        .main-container {
            padding-left: 25%;
            padding-right: 25%;
        }
        .lookup-container {
            max-width: auto;
            margin: 20px auto;
            background: #fff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0,0,0,.05);
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }
        
        .form-control{
        	width:400px;
            height:45px;
            margin: 0 auto;
            display: block;
            display:flex;
            
        
        }
        
        .btn{
        	width:400px ;
            height:45px;
            margin: 0 auto;
            display: block;
            
        
        }
        
        .output-container {
    position: relative; /* New line to add */
    margin-top: 30px;
    min-height: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,.05);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

        .navbar-brand {
            display: flex;
            justify-content: center;
            width: 100%;
            
            margin: 20px 0;
        }
        
        
        /* SEO Text Style */
        .seo-text {
            text-align: center;
            margin-bottom: 20px;
            font-size: 18px;
            color: #666;
            font-family:Verdana;
        }
        
        
        .ipImage {
    width: 100px; /* Set the width of the image */
    height: auto; /* Set the height to auto to maintain aspect ratio */
    border-radius: 50%; /* Optional: makes the image round */
}


.loader {
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    position: absolute; /* Change from fixed to absolute */
    top: 0;
    left: 0;
    right: 0; /* Ensure full width */
    bottom: 0; /* Ensure full height */
    margin: auto; /* Center the loader */
    width: 100px;
    height: 100px;
    background-color: transparent; /* Assuming you want a transparent background */
    z-index: 1000; /* Ensure it's above other content */
}


    .loader::after {
        content: "";
        width: 75px;
        height: 75px;
        border: 15px solid #1e272e; /* Light grey border */
        border-top-color: #33d9b2; /* Cyan top color */
        border-radius: 50%;
        animation: loading 0.75s ease-out infinite;
    }

    @keyframes loading {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }
    
    .ptags{
        font-size:30px;
        color:black;
        font-family:Roboto, sans-serif;
    }
.navbar-nav .nav-link {
    font-size: 22px; /* Updated font size */
    font-family: Roboto, sans-serif; /* Example font family, change as needed */
    color:#2c2c54;
    
}

.navbar {
    font-size: 22px; /* Updated font size */
    font-family: Roboto, sans-serif; /* Example font family, change as needed */
    color:#2c2c54;
    background: #fff;
    
}
    @media (max-width: 992px) {
        .navbar-nav {
            display: flex;
            flex-direction: row;
            justify-content: center;
        }
        .nav-item {
            margin: 0 10px; /* Adjust spacing between menu items as needed */
        }
        .navbar-collapse {
            flex-grow: 0;
        }
    }
    
    @media (max-width: 768px) { /* Adjust based on your breakpoint needs */
    .form-control, .btn {
        width: auto; /* Makes the width respond to the inner container size */
        margin-left: auto; /* Centers the button and form control */
        margin-right: auto; /* Centers the button and form control */
        max-width: 95%; /* Limits the width, ensuring padding */
    }
}

    @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
 @media (max-width: 768px) { /* Adjust this value if you have a different breakpoint in mind */
    .main-container {
        padding-left: 5%;
        padding-right: 5%;
    }
}

.image-container {
    max-width: 600px; /* Adjust based on your preference */
    margin: 20px auto; /* Center the container */
}

#vpnImage {
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain aspect ratio */
}

.seo-post-container {
    background: #fff;
    margin: 20px auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,.05);
    font-size: 18px;
    color: #212529;
    max-width: auto;
}

.seo-post-container h2, .seo-post-container h3 {
    color: #2c3a47; /* Or any color that fits your site's theme */
}

.seo-post-container p {
    text-align: justify;
    line-height: 1.6;
    font-family:verdana , sans-serif;
    font-size:18px;
    color:#212529;
}

.conclusion {
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    font-size:18px;
    font-family:verdana , sans-serif;
}

.footer-container {
    background-color: #f8f9fa; /* Light grey background */
    border-top: 1px solid #e7e7e7; /* Light grey border for a subtle separation */
    color: #6c757d; /* Dark grey text, adjust as needed */
    font-size:20px;
}
