.whmcs-search-form {
    display: flex;
    gap: 10px;
    width: 100%; /* allow Elementor to control max-width if needed */
    align-items: center;
}

.whmcs-search-form input[type="text"] {
    padding: 10px;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: transparent; /* allow theme/Elementor to control */
}

.whmcs-search-form button {
    padding: 10px 20px;
    background-color: var(--e-global-color-primary, #2271b1);
    color: var(--e-global-color-text, #ffffff);
    font-size: inherit;
    font-family: inherit;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.whmcs-search-form button:hover {
    opacity: 0.95;
}
