#loader-section {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1C3F3A;
    z-index: 9999!important; /* Ensure it appears above all other content */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
}

#loader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 90rem;
    padding: 12.5rem 1.5rem;
    position: relative;
}

#loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

/* Loader animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-step {
    text-align: center;
    display: none;
}

.loader-step {
    font-size: 28px; /* Default for desktop */
    text-align: center;
    display: none;
}

@media (max-width: 768px) {
    .loader-step {
        font-size: 24px; /* Adjust for mobile devices */
    }
}


body {
    overflow: auto; /* Disable scrolling when loader is active */
}

@media (max-width: 768px) {
    #loader-container {
        padding: 10rem 1rem; /* Adjust padding for mobile devices */
    }

    #lottie-animation {
        height: 80px; /* Adjust Lottie animation size for mobile */
    }
}


/* General form layout */
#website-analysis-form {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap:10px;
	margin-bottom:0px;
}

/* Input field container */
.input-container {
    flex: 4; /* 80% of the width */
    margin-bottom: 0px;
}

/* Input field styling */
#website-url {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-bottom: 1px solid #ccc; /* Only a bottom border */
    border-radius: 0px;
    box-sizing: border-box;
}


/* Button container */
.button-container {
    flex: 1; /* 20% of the width */
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Button styling 
#submit-url {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    background-color: #e3f488;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	color:#1c3f3a;
	text-transform:capitalize;
	line-height: 1em;	
	border-radius:10px;
}

#submit-url:hover {
    background-color: #1c3f3a;
	border-radius:10px;
	color:#ffffff;
}
*/
/* Responsive design for mobile */
@media (max-width: 600px) {
    #website-analysis-form {
        flex-direction: column;
    }

    .input-container,
    .button-container {
        width: 100%; /* Full width on mobile */
        margin-bottom: 0px;
    }

    .button-container {
        margin-bottom: 0; /* Remove margin for the last element */
    }
}



