.elementor-6310 .elementor-element.elementor-element-9dc9d2b > .elementor-container{max-width:926px;}/* Start custom CSS for html, class: .elementor-element-d23cf0d */<style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f4f4f4;
        }
        .domain-search {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%; /* Width of the entire search bar section */
            max-width: 100%; /* Max width to control expansion on large screens */
            background-color: white;
            border: 2px solid #ccc;
            border-radius: 5px;
            box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
            padding: 10px; /* Added padding to the container */
            gap: 15px; /* Added space between form elements */
        }
        input[type="text"] {
            padding: 12px;
            font-size: 18px;
            border: 1px solid #ccc; /* Added a border for spacing visibility */
            border-radius: 5px;
            outline: none;
            box-sizing: border-box; /* Ensure padding is included in the width */
        }
        select {
            
            padding: 12px;
            font-size: 18px;
            border: 1px solid #ccc; /* Added a border for spacing visibility */
            outline: none;
            background-color: white;
            border-radius: 5px;
            box-sizing: border-box; /* Ensure padding is included in the width */
        }
        button {
            width: auto;
            padding: 12px 20px; /* Added padding for better button size */
            font-size: 18px;
            background-color: #007BFF !important; /* Blue button */
            color: #ffffff !important;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            box-sizing: border-box; /* Ensure padding is included in the width */
        }
        button:hover {
            background-color: #0056b3; /* Darker blue on hover */
        }
        @media (max-width: 768px) {
            .domain-search {
                flex-direction: column;
                width: 90%;
                padding: 20px; /* More padding for smaller screens */
            }
            input[type="text"], select, button {
                width: 100%;
                margin-bottom: 10px;
            }
        }
    </style>/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-9dc9d2b */<style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f4f4f4;
        }
        .domain-search {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 80%; /* Width of the entire search bar section */
            max-width: 800px; /* Max width to control expansion on large screens */
            background-color: white;
            border: 2px solid #ccc;
            border-radius: 5px;
            box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
        }
        input[type="text"] {
            width: 70%; /* Width of the search bar */
            padding: 12px;
            font-size: 18px;
            border: none;
            border-radius: 5px 0 0 5px;
            outline: none;
        }
        select {
            width: 20%; /* Width of the dropdown */
            padding: 12px;
            font-size: 18px;
            border: none;
            border-left: 1px solid #ccc;
            outline: none;
            background-color: white;
            border-radius: 0;
        }
        button {
            width: 10%;
            padding: 12px;
            font-size: 18px;
            background-color: #0056b3; /* Blue search button */
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
        }
        button:hover {
            background-color: #004099; /* Darker blue on hover */
        }
        @media (max-width: 768px) {
            .domain-search {
                flex-direction: column;
                width: 90%;
            }
            input[type="text"], select, button {
                width: 100%;
                margin-bottom: 10px;
                border-radius: 5px;
            }
        }
    </style>/* End custom CSS */