body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    flex-direction: column; /* Changed to column to stack elements */
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Use min-height to allow content to expand */
    margin: 0;
    padding: 20px; /* Add some padding for overall spacing */
    box-sizing: border-box; /* Include padding in element's total width and height */
}

.top-bar {
    position: absolute;
    top: 10px;
    right: 10px;
}

#language-selector {
    padding: 5px;
    border-radius: 5px;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 40px; /* Add space between generator and form */
    width: 100%;
    max-width: 500px;
}

h1 {
    margin-bottom: 20px;
    color: #333;
}

.numbers-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4CAF50;
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#generate-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#generate-btn:hover {
    background-color: #0056b3;
}

/* Affiliate Inquiry Form Styles */
.affiliate-inquiry {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: left; /* Align text to left within the form */
}

.affiliate-inquiry h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.affiliate-inquiry form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between form elements */
}

.affiliate-inquiry label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.affiliate-inquiry input[type="text"],
.affiliate-inquiry input[type="email"],
.affiliate-inquiry textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box; /* Include padding in element's total width and height */
}

.affiliate-inquiry input[type="text"]:focus,
.affiliate-inquiry input[type="email"]:focus,
.affiliate-inquiry textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.affiliate-inquiry button[type="submit"] {
    background-color: #28a745; /* Green for submit button */
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.affiliate-inquiry button[type="submit"]:hover {
    background-color: #218838;
}

/* Disqus Container Styles */
.disqus-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin-top: 40px;
}
