
/* General Styles---------------------------------------------------- */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0px;
}

.main {
    font-size: 16px;
    color: #e1e3e8;
    background-color: #1e2530; /* Darker background for better contrast */
    line-height: 1.6; /* Improve readability */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align content */
}

.footer {
    width: 100%;
    color: #e1e3e8;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align content */
    line-height: 0;
}

        .logo-header {
            margin: 20px auto;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            max-width: 98%;
            width: fit-content;
            font-size: 60%;
        }
        .logo-header img {
            width: 30px;
            margin-right: 10px;
            height: auto;
            max-width: 80px;
            box-shadow: 4px 6px 6px rgba(0, 0, 0, 0.35);
        }

#input, #seed {
    width: 94%;
    max-width: 800px;

}

textarea, input[type="text"], input[type="number"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
    background-color: #2a3241; /* Darker background for input fields */
    color: #e1e3e8;
    border: 1px solid #5a6075;
    border-radius: 5px; /* Rounded corners for a modern look */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

textarea:focus, input:focus {
    border-color: #6f7a94; /* Highlight on focus */
    box-shadow: 0 0 8px rgba(111, 122, 148, 0.7); /* Subtle glow on focus */
}

button {
    padding: 12px 24px;
    margin-top: 10px;
    cursor: pointer;
    background-color: #4e5b76;
    color: #e1e3e8;
    border: none;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

button:hover {
    background-color: #6f7a94; /* Lighter on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

#output {
    border: 1px solid #5a6075;
    padding: 15px;
    min-height: 100px; /* Increased height for clarity */
    white-space: pre-wrap;
    width: 92%;
    max-width: 800px;
    background-color: #2a3241;
    color: #e1e3e8;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Soft shadow for emphasis */
}

.typing {
    border-right: 2px solid #e1e3e8;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% { border-color: transparent; }
    50% { border-color: #e1e3e8; }
    100% { border-color: transparent; }
}



/* Parameter Section Styles */
.parameters {
    border: 1px solid #5a6075;
    padding: 20px;
    margin-top: 20px;
    background-color: #2a3241;
    font-size: 80%;
    width: 80%;
    max-width: 400px;
    border-radius: 8px; /* Soft rounded corners */
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}


.parameter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #e1e3e8;
}

.parameter-group input[type="range"] {
    width: 100%;
    background-color: #3b4456;
    accent-color: #6f7a94; /* Custom thumb and track colors */
    border-radius: 5px;
    height: 8px;
}

.parameter-value {
    font-weight: bold;
    margin-left: 10px;
    color: #e1e3e8;
}

/* Footer Styles */
footer {
    margin-top: 50px;
    text-align: center;
    color: #a1a3aa;
    font-size: 0.9em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #1e2530; /* Darker scrollbar track */
}

::-webkit-scrollbar-thumb {
    background-color: #4e5b76; /* Matching scrollbar thumb */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #6f7a94; /* Lighten thumb on hover */
}

/* Spinner Styles */
.spinner {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
  .mlhs-ad{
    width: 92%;
    max-width: 800px;
    margin: 18px auto;
  }
